Skip to content

Commit fffbdf2

Browse files
author
Kyle Bradshaw
committed
Initial commit
0 parents  commit fffbdf2

File tree

541 files changed

+48823
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

541 files changed

+48823
-0
lines changed

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright 2016 The Fuchsia Authors. All rights reserved.
2+
//
3+
// Redistribution and use in source and binary forms, with or without
4+
// modification, are permitted provided that the following conditions are
5+
// met:
6+
//
7+
// * Redistributions of source code must retain the above copyright
8+
// notice, this list of conditions and the following disclaimer.
9+
// * Redistributions in binary form must reproduce the above
10+
// copyright notice, this list of conditions and the following disclaimer
11+
// in the documentation and/or other materials provided with the
12+
// distribution.
13+
// * Neither the name of Google Inc. nor the names of its
14+
// contributors may be used to endorse or promote products derived from
15+
// this software without specific prior written permission.
16+
//
17+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

WORKSPACE

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright 2018 The Fuchsia Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.

build_defs/BUILD

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Copyright 2018 The Fuchsia Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
licenses(["notice"])
6+
7+
exports_files(
8+
glob(["*"]),
9+
)

build_defs/BUILD.crosstool

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# Copyright 2018 The Fuchsia Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
# DO NOT MANUALLY EDIT!
6+
# Generated by //scripts/sdk/bazel/generate.py.
7+
8+
licenses(["notice"])
9+
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
cc_toolchain_suite(
14+
name = "toolchain",
15+
toolchains = {
16+
"x86_64|llvm": ":cc-compiler-x86_64",
17+
"x86_64": ":cc-compiler-x86_64",
18+
},
19+
)
20+
21+
TARGET_CPUS = [
22+
"x86_64",
23+
]
24+
25+
filegroup(
26+
name = "empty",
27+
)
28+
29+
filegroup(
30+
name = "cc-compiler-prebuilts",
31+
srcs = [
32+
"clang/bin/clang",
33+
"clang/bin/clang-8",
34+
"clang/bin/llvm-ar",
35+
"clang/bin/clang++",
36+
"clang/bin/ld.lld",
37+
"clang/bin/lld",
38+
"clang/bin/llvm-nm",
39+
"clang/bin/llvm-objdump",
40+
"clang/bin/llvm-strip",
41+
"clang/bin/llvm-objcopy",
42+
] + glob([
43+
"clang/lib/clang/8.0.0/include/**",
44+
]),
45+
)
46+
47+
filegroup(
48+
name = "compile",
49+
srcs = [
50+
":cc-compiler-prebuilts",
51+
],
52+
)
53+
54+
filegroup(
55+
name = "objcopy",
56+
srcs = [
57+
"clang/bin/llvm-objcopy",
58+
],
59+
)
60+
61+
[
62+
filegroup(
63+
name = "every-file-" + cpu,
64+
srcs = [
65+
":cc-compiler-prebuilts",
66+
":runtime-" + cpu,
67+
],
68+
)
69+
for cpu in TARGET_CPUS
70+
]
71+
72+
[
73+
filegroup(
74+
name = "link-" + cpu,
75+
srcs = [
76+
":cc-compiler-prebuilts",
77+
":runtime-" + cpu,
78+
],
79+
)
80+
for cpu in TARGET_CPUS
81+
]
82+
83+
[
84+
filegroup(
85+
name = "runtime-" + cpu,
86+
srcs = [
87+
"clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libclang_rt.builtins.a",
88+
],
89+
)
90+
for cpu in TARGET_CPUS
91+
]
92+
93+
[
94+
cc_toolchain(
95+
name = "cc-compiler-" + cpu,
96+
toolchain_identifier = "crosstool-1.x.x-llvm-fuchsia-" + cpu,
97+
all_files = ":every-file-" + cpu,
98+
compiler_files = ":compile",
99+
cpu = cpu,
100+
dwp_files = ":empty",
101+
dynamic_runtime_libs = [":runtime-" + cpu],
102+
linker_files = ":link-" + cpu,
103+
objcopy_files = ":objcopy",
104+
static_runtime_libs = [":runtime-" + cpu],
105+
strip_files = ":runtime-" + cpu,
106+
supports_param_files = 1,
107+
)
108+
for cpu in TARGET_CPUS
109+
]
110+
111+
cc_library(
112+
name = "sources",
113+
srcs = glob(["src/**"]),
114+
visibility = ["//visibility:public"],
115+
)
116+
117+
[
118+
filegroup(
119+
name = "dist-" + cpu,
120+
srcs = [
121+
"clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libc++.so.2",
122+
"clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libc++abi.so.1",
123+
"clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libunwind.so.1",
124+
],
125+
)
126+
for cpu in TARGET_CPUS
127+
]

build_defs/BUILD.flutter

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright 2018 The Fuchsia Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
load("@io_bazel_rules_dart//dart/build_rules:core.bzl", "dart_library")
6+
7+
package(default_visibility = ["//visibility:public"])
8+
9+
dart_library(
10+
name = "flutter",
11+
pub_pkg_name = "flutter",
12+
srcs = glob(["lib/**/*.dart"]),
13+
deps = [
14+
"@vendor_collection//:collection",
15+
"@vendor_meta//:meta",
16+
"@vendor_typed_data//:typed_data",
17+
"@vendor_vector_math//:vector_math",
18+
],
19+
)

build_defs/BUILD.flutter_root

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright 2018 The Fuchsia Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
package(default_visibility = ["//visibility:public"])
6+
7+
alias(
8+
name = "flutter",
9+
actual = "//packages/flutter:flutter",
10+
)

build_defs/CROSSTOOL.in

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Copyright 2018 The Fuchsia Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
major_version: "1.x.x"
6+
minor_version: "llvm:7.x.x"
7+
default_target_cpu: "x64"
8+
9+
toolchain {
10+
abi_version: "local"
11+
abi_libc_version: "local"
12+
13+
builtin_sysroot: "%{SYSROOT_X64}"
14+
compiler: "llvm"
15+
default_python_top: "/dev/null"
16+
default_python_version: "python2.7"
17+
host_system_name: "x86_64-unknown-linux-gnu"
18+
needsPic: true
19+
supports_gold_linker: false
20+
supports_incremental_linker: false
21+
supports_fission: false
22+
supports_interface_shared_objects: false
23+
supports_normalizing_ar: true
24+
supports_start_end_lib: false
25+
target_libc: "fuchsia"
26+
target_cpu: "x86_64"
27+
target_system_name: "x86_64-fuchsia"
28+
toolchain_identifier: "crosstool-1.x.x-llvm-fuchsia-x86_64"
29+
cc_target_os: "fuchsia"
30+
31+
tool_path { name: "ar" path: "clang/bin/llvm-ar" }
32+
tool_path { name: "cpp" path: "clang/bin/clang++" }
33+
tool_path { name: "gcc" path: "clang/bin/clang" }
34+
tool_path { name: "lld" path: "clang/bin/lld" }
35+
tool_path { name: "objdump" path: "clang/bin/llvm-objdump" }
36+
tool_path { name: "strip" path: "clang/bin/llvm-strip" }
37+
tool_path { name: "nm" path: "clang/bin/llvm-nm" }
38+
tool_path { name: "objcopy" path: "clang/bin/llvm-objcopy" }
39+
tool_path { name: "dwp" path: "/not_available/dwp" } # Not used but required
40+
tool_path { name: "compat-ld" path: "/not_available/compat-ld" } # Not used but required
41+
tool_path { name: "gcov" path: "/not_available/gcov" } # Not used but required
42+
tool_path { name: "gcov-tool" path: "/not_available/gcov-tool" } # Not used but required
43+
tool_path { name: "ld" path: "clang/bin/ld.lld" }
44+
45+
compiler_flag: "--target=x86_64-fuchsia"
46+
linker_flag: "--target=x86_64-fuchsia"
47+
48+
# Use C++14 by default.
49+
cxx_flag: "-std=c++14"
50+
51+
cxx_flag: "-xc++"
52+
53+
linker_flag: "--driver-mode=g++"
54+
linker_flag: "-lzircon"
55+
56+
# The following are to make the various files in runtimes/sdk available
57+
58+
# Implicit dependencies for Fuchsia system functionality
59+
cxx_builtin_include_directory: "%{SYSROOT_X64}/include" # Platform parts of libc.
60+
cxx_builtin_include_directory: "%{CROSSTOOL_ROOT}/clang/lib/x86_64-fuchsia/include/c++/v1" # Platform libc++.
61+
cxx_builtin_include_directory: "%{CROSSTOOL_ROOT}/clang/lib/clang/8.0.0/include" # Platform libc++.
62+
63+
64+
compiler_flag: "-Wall"
65+
compiler_flag: "-Werror"
66+
}
67+

0 commit comments

Comments
 (0)