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

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

Issue 2431753002: Mus experiment in content shell on Android.
Patch Set: checkdeps fix Created 4 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 # Some tests rely on this tool at runtime. Note: it might be better if 301 # Some tests rely on this tool at runtime. Note: it might be better if
302 # the tests that needed it had this as a dep instead of adding it here. 302 # the tests that needed it had this as a dep instead of adding it here.
303 data_deps = [ 303 data_deps = [
304 "//tools/xdisplaycheck", 304 "//tools/xdisplaycheck",
305 ] 305 ]
306 306
307 deps += [ "//ui/events/devices/x11" ] 307 deps += [ "//ui/events/devices/x11" ]
308 } 308 }
309 309
310 if (is_android) { 310 if (is_android) {
311 deps += [ "//content/shell/android:content_shell_jni_headers" ] 311 deps += [
312 "//content/shell/android:content_shell_jni_headers",
313 "//services/ui:lib",
314 "//services/ui/demo:lib",
315 "//services/ui/ime/test_ime_driver:lib",
316 ]
312 } 317 }
313 318
314 if (is_posix && !is_mac) { 319 if (is_posix && !is_mac) {
315 deps += [ 320 deps += [
316 "//components/crash/content/app", 321 "//components/crash/content/app",
317 "//components/crash/content/browser", 322 "//components/crash/content/browser",
318 ] 323 ]
319 } 324 }
320 325
321 if (use_aura) { 326 if (use_aura) {
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 "{{bundle_resources_dir}}/{{source_file_part}}", 751 "{{bundle_resources_dir}}/{{source_file_part}}",
747 ] 752 ]
748 } 753 }
749 } 754 }
750 755
751 mojom("mojo_bindings") { 756 mojom("mojo_bindings") {
752 sources = [ 757 sources = [
753 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 758 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
754 ] 759 ]
755 } 760 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698