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

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

Issue 1213623008: Back button should be able to close apps (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix tests 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
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",
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 deps = [ 112 deps = [
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/network/public/interfaces:interfaces_java", 118 "//mojo/services/network/public/interfaces:interfaces_java",
119 "//services/keyboard", 119 "//services/keyboard",
120 "//sky/services/engine:engine_java", 120 "//sky/services/engine:engine_java",
121 "//sky/services/oknet", 121 "//sky/services/oknet",
122 "//sky/services/intents:intents_lib",
122 ] 123 ]
123 } 124 }
124 125
125 copy_ex("assets") { 126 copy_ex("assets") {
126 clear_dir = true 127 clear_dir = true
127 dest = "$root_build_dir/sky_shell/assets" 128 dest = "$root_build_dir/sky_shell/assets"
128 sources = [ 129 sources = [
129 "$root_build_dir/icudtl.dat", 130 "$root_build_dir/icudtl.dat",
130 ] 131 ]
131 deps = [ 132 deps = [
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 ] 188 ]
188 189
189 deps = common_deps + [ 190 deps = common_deps + [
190 ":common", 191 ":common",
191 "//sky/services/testing", 192 "//sky/services/testing",
192 ] 193 ]
193 } 194 }
194 } else { 195 } else {
195 assert(false, "Unsupported platform") 196 assert(false, "Unsupported platform")
196 } 197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698