OLD | NEW |
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 Loading... |
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 "//ui/android:android", |
| 314 ] |
312 } | 315 } |
313 | 316 |
314 if (is_posix && !is_mac) { | 317 if (is_posix && !is_mac) { |
315 deps += [ | 318 deps += [ |
316 "//components/crash/content/app", | 319 "//components/crash/content/app", |
317 "//components/crash/content/browser", | 320 "//components/crash/content/browser", |
318 ] | 321 ] |
319 } | 322 } |
320 | 323 |
321 if (use_aura) { | 324 if (use_aura) { |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 "{{bundle_resources_dir}}/{{source_file_part}}", | 745 "{{bundle_resources_dir}}/{{source_file_part}}", |
743 ] | 746 ] |
744 } | 747 } |
745 } | 748 } |
746 | 749 |
747 mojom("mojo_bindings") { | 750 mojom("mojo_bindings") { |
748 sources = [ | 751 sources = [ |
749 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 752 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
750 ] | 753 ] |
751 } | 754 } |
OLD | NEW |