Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(901)

Side by Side Diff: sky/shell/BUILD.gn

Issue 1227973002: Build skyx packages by default (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: typo Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/services/testing/BUILD.gn ('k') | sky/tools/skyx.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 common_deps = [ 5 common_deps = [
6 "//base", 6 "//base",
7 "//base:i18n", 7 "//base:i18n",
8 "//build/config/sanitizers:deps", 8 "//build/config/sanitizers:deps",
9 "//dart/runtime:libdart", 9 "//dart/runtime:libdart",
10 "//mojo/common", 10 "//mojo/common",
11 "//mojo/edk/system", 11 "//mojo/edk/system",
12 "//mojo/public/cpp/application", 12 "//mojo/public/cpp/application",
13 "//mojo/public/interfaces/application", 13 "//mojo/public/interfaces/application",
14 "//mojo/services/asset_bundle/public/interfaces", 14 "//mojo/services/asset_bundle/public/interfaces",
15 "//mojo/services/navigation/public/interfaces", 15 "//mojo/services/navigation/public/interfaces",
16 "//mojo/services/network/public/interfaces", 16 "//mojo/services/network/public/interfaces",
17 "//services/asset_bundle:lib", 17 "//services/asset_bundle:lib",
18 "//skia", 18 "//skia",
19 "//sky/engine", 19 "//sky/engine",
20 "//sky/engine/tonic", 20 "//sky/engine/tonic",
21 "//sky/engine/wtf", 21 "//sky/engine/wtf",
22 "//sky/services/engine", 22 "//sky/services/engine:interfaces",
23 "//sky/services/platform", 23 "//sky/services/platform",
24 "//sky/shell/dart", 24 "//sky/shell/dart",
25 "//ui/gfx/geometry", 25 "//ui/gfx/geometry",
26 "//ui/gl", 26 "//ui/gl",
27 ] 27 ]
28 28
29 source_set("common") { 29 source_set("common") {
30 sources = [ 30 sources = [
31 "gpu/ganesh_context.cc", 31 "gpu/ganesh_context.cc",
32 "gpu/ganesh_context.h", 32 "gpu/ganesh_context.h",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "//base:base_java", 113 "//base:base_java",
114 "//mojo/android:system_java", 114 "//mojo/android:system_java",
115 "//mojo/public/interfaces/application:application_java", 115 "//mojo/public/interfaces/application:application_java",
116 "//mojo/public/java:bindings", 116 "//mojo/public/java:bindings",
117 "//mojo/public/java:system", 117 "//mojo/public/java:system",
118 "//mojo/services/keyboard/public/interfaces:interfaces_java", 118 "//mojo/services/keyboard/public/interfaces:interfaces_java",
119 "//mojo/services/network/public/interfaces:interfaces_java", 119 "//mojo/services/network/public/interfaces:interfaces_java",
120 "//services/keyboard", 120 "//services/keyboard",
121 "//sky/services/activity:activity_lib", 121 "//sky/services/activity:activity_lib",
122 "//sky/services/activity:interfaces_java", 122 "//sky/services/activity:interfaces_java",
123 "//sky/services/engine:engine_java", 123 "//sky/services/engine:interfaces_java",
124 "//sky/services/oknet", 124 "//sky/services/oknet",
125 ] 125 ]
126 } 126 }
127 127
128 copy_ex("assets") { 128 copy_ex("assets") {
129 clear_dir = true 129 clear_dir = true
130 dest = "$root_build_dir/sky_shell/assets" 130 dest = "$root_build_dir/sky_shell/assets"
131 sources = [ 131 sources = [
132 "$root_build_dir/icudtl.dat", 132 "$root_build_dir/icudtl.dat",
133 ] 133 ]
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 sources = [ 184 sources = [
185 "linux/main.cc", 185 "linux/main.cc",
186 "linux/platform_service_provider_linux.cc", 186 "linux/platform_service_provider_linux.cc",
187 "linux/platform_view_linux.cc", 187 "linux/platform_view_linux.cc",
188 "testing/test_runner.cc", 188 "testing/test_runner.cc",
189 "testing/test_runner.h", 189 "testing/test_runner.h",
190 ] 190 ]
191 191
192 deps = common_deps + [ 192 deps = common_deps + [
193 ":common", 193 ":common",
194 "//sky/services/testing", 194 "//sky/services/testing:interfaces",
195 ] 195 ]
196 } 196 }
197 } else { 197 } else {
198 assert(false, "Unsupported platform") 198 assert(false, "Unsupported platform")
199 } 199 }
OLDNEW
« no previous file with comments | « sky/services/testing/BUILD.gn ('k') | sky/tools/skyx.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698