| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 # Some tests rely on this tool at runtime. Note: it might be better if | 309 # Some tests rely on this tool at runtime. Note: it might be better if |
| 310 # the tests that needed it had this as a dep instead of adding it here. | 310 # the tests that needed it had this as a dep instead of adding it here. |
| 311 data_deps = [ | 311 data_deps = [ |
| 312 "//tools/xdisplaycheck", | 312 "//tools/xdisplaycheck", |
| 313 ] | 313 ] |
| 314 | 314 |
| 315 deps += [ "//ui/events/devices/x11" ] | 315 deps += [ "//ui/events/devices/x11" ] |
| 316 } | 316 } |
| 317 | 317 |
| 318 if (is_android) { | 318 if (is_android) { |
| 319 deps += [ "//content/shell/android:content_shell_jni_headers" ] | 319 deps += [ |
| 320 "//base/test:test_support", |
| 321 "//content/shell/android:content_shell_jni_headers", |
| 322 ] |
| 320 } | 323 } |
| 321 | 324 |
| 322 if (is_posix && !is_mac) { | 325 if (is_posix && !is_mac) { |
| 323 deps += [ | 326 deps += [ |
| 324 "//components/crash/content/app", | 327 "//components/crash/content/app", |
| 325 "//components/crash/content/browser", | 328 "//components/crash/content/browser", |
| 326 ] | 329 ] |
| 327 } | 330 } |
| 328 | 331 |
| 329 if (use_aura) { | 332 if (use_aura) { |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 "{{bundle_resources_dir}}/{{source_file_part}}", | 758 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 756 ] | 759 ] |
| 757 } | 760 } |
| 758 } | 761 } |
| 759 | 762 |
| 760 mojom("mojo_bindings") { | 763 mojom("mojo_bindings") { |
| 761 sources = [ | 764 sources = [ |
| 762 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 765 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 763 ] | 766 ] |
| 764 } | 767 } |
| OLD | NEW |