| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 "//ui/latency", | 823 "//ui/latency", |
| 824 "//ui/native_theme", | 824 "//ui/native_theme", |
| 825 "//ui/resources", | 825 "//ui/resources", |
| 826 "//ui/shell_dialogs", | 826 "//ui/shell_dialogs", |
| 827 "//ui/snapshot", | 827 "//ui/snapshot", |
| 828 ] | 828 ] |
| 829 | 829 |
| 830 data = [] | 830 data = [] |
| 831 | 831 |
| 832 data_deps = [ | 832 data_deps = [ |
| 833 ":web_ui_test_mojo_bindings_js_data_deps", |
| 833 "//content/shell:pak", | 834 "//content/shell:pak", |
| 834 "//testing/buildbot/filters:content_browsertests_filters", | 835 "//testing/buildbot/filters:content_browsertests_filters", |
| 835 "//third_party/mesa:osmesa", | 836 "//third_party/mesa:osmesa", |
| 836 ] | 837 ] |
| 837 | 838 |
| 838 if (enable_plugins) { | 839 if (enable_plugins) { |
| 839 deps += [ | 840 deps += [ |
| 840 "//ppapi/host", | 841 "//ppapi/host", |
| 841 "//ppapi/proxy", | 842 "//ppapi/proxy", |
| 842 "//ppapi/proxy:ipc", | 843 "//ppapi/proxy:ipc", |
| (...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1897 if (is_android) { | 1898 if (is_android) { |
| 1898 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1899 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1899 } | 1900 } |
| 1900 } | 1901 } |
| 1901 | 1902 |
| 1902 group("fuzzers") { | 1903 group("fuzzers") { |
| 1903 deps = [ | 1904 deps = [ |
| 1904 "//content/test/fuzzer", | 1905 "//content/test/fuzzer", |
| 1905 ] | 1906 ] |
| 1906 } | 1907 } |
| OLD | NEW |