| 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 if (is_linux) { | 301 if (is_linux) { |
| 302 deps += [ | 302 deps += [ |
| 303 "//build/linux:fontconfig", | 303 "//build/linux:fontconfig", |
| 304 "//ui/gfx:test_support", | 304 "//ui/gfx:test_support", |
| 305 ] | 305 ] |
| 306 } | 306 } |
| 307 | 307 |
| 308 if (use_x11) { | 308 if (use_x11) { |
| 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 = [ | |
| 312 "//tools/xdisplaycheck", | |
| 313 ] | |
| 314 | |
| 315 deps += [ "//ui/events/devices/x11" ] | 311 deps += [ "//ui/events/devices/x11" ] |
| 316 } | 312 } |
| 317 | 313 |
| 318 if (is_android) { | 314 if (is_android) { |
| 319 deps += [ "//content/shell/android:content_shell_jni_headers" ] | 315 deps += [ "//content/shell/android:content_shell_jni_headers" ] |
| 320 } | 316 } |
| 321 | 317 |
| 322 if (is_posix && !is_mac) { | 318 if (is_posix && !is_mac) { |
| 323 deps += [ | 319 deps += [ |
| 324 "//components/crash/content/app", | 320 "//components/crash/content/app", |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 "{{bundle_resources_dir}}/{{source_file_part}}", | 751 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 756 ] | 752 ] |
| 757 } | 753 } |
| 758 } | 754 } |
| 759 | 755 |
| 760 mojom("mojo_bindings") { | 756 mojom("mojo_bindings") { |
| 761 sources = [ | 757 sources = [ |
| 762 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 758 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 763 ] | 759 ] |
| 764 } | 760 } |
| OLD | NEW |