| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "content_browser_sanity_checker.cc", | 146 "content_browser_sanity_checker.cc", |
| 147 "content_browser_sanity_checker.h", | 147 "content_browser_sanity_checker.h", |
| 148 "content_test_suite.cc", | 148 "content_test_suite.cc", |
| 149 "content_test_suite.h", | 149 "content_test_suite.h", |
| 150 "dwrite_font_fake_sender_win.cc", | 150 "dwrite_font_fake_sender_win.cc", |
| 151 "dwrite_font_fake_sender_win.h", | 151 "dwrite_font_fake_sender_win.h", |
| 152 "fake_compositor_dependencies.cc", | 152 "fake_compositor_dependencies.cc", |
| 153 "fake_compositor_dependencies.h", | 153 "fake_compositor_dependencies.h", |
| 154 "fake_plugin_service.cc", | 154 "fake_plugin_service.cc", |
| 155 "fake_plugin_service.h", | 155 "fake_plugin_service.h", |
| 156 "fake_renderer_compositor_frame_sink.cc", | |
| 157 "fake_renderer_compositor_frame_sink.h", | |
| 158 "mock_background_sync_controller.cc", | 156 "mock_background_sync_controller.cc", |
| 159 "mock_background_sync_controller.h", | 157 "mock_background_sync_controller.h", |
| 160 "mock_google_streaming_server.cc", | 158 "mock_google_streaming_server.cc", |
| 161 "mock_google_streaming_server.h", | 159 "mock_google_streaming_server.h", |
| 162 "mock_keyboard.cc", | 160 "mock_keyboard.cc", |
| 163 "mock_keyboard.h", | 161 "mock_keyboard.h", |
| 164 "mock_keyboard_driver_win.cc", | 162 "mock_keyboard_driver_win.cc", |
| 165 "mock_keyboard_driver_win.h", | 163 "mock_keyboard_driver_win.h", |
| 166 "mock_leveldb_database.cc", | 164 "mock_leveldb_database.cc", |
| 167 "mock_leveldb_database.h", | 165 "mock_leveldb_database.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "//ipc", | 226 "//ipc", |
| 229 "//third_party/WebKit/public:blink", | 227 "//third_party/WebKit/public:blink", |
| 230 "//third_party/WebKit/public:test_support", | 228 "//third_party/WebKit/public:test_support", |
| 231 ] | 229 ] |
| 232 deps = [ | 230 deps = [ |
| 233 ":content_test_mojo_bindings", | 231 ":content_test_mojo_bindings", |
| 234 "//base/third_party/dynamic_annotations", | 232 "//base/third_party/dynamic_annotations", |
| 235 "//cc:test_support", | 233 "//cc:test_support", |
| 236 "//cc/blink", | 234 "//cc/blink", |
| 237 "//cc/ipc", | 235 "//cc/ipc", |
| 238 "//cc/ipc:interfaces", | |
| 239 "//cc/surfaces", | 236 "//cc/surfaces", |
| 240 "//components/display_compositor", | 237 "//components/display_compositor", |
| 241 "//components/leveldb/public/interfaces", | 238 "//components/leveldb/public/interfaces", |
| 242 "//components/payments/mojom:mojom_payment_app", | 239 "//components/payments/mojom:mojom_payment_app", |
| 243 "//content/app:both_for_content_tests", | 240 "//content/app:both_for_content_tests", |
| 244 "//content/browser:for_content_tests", | 241 "//content/browser:for_content_tests", |
| 245 "//content/browser/speech/proto", | 242 "//content/browser/speech/proto", |
| 246 "//content/child:for_content_tests", | 243 "//content/child:for_content_tests", |
| 247 "//content/gpu", | 244 "//content/gpu", |
| 248 "//content/public/browser", | 245 "//content/public/browser", |
| (...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1824 if (is_android) { | 1821 if (is_android) { |
| 1825 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1822 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1826 } | 1823 } |
| 1827 } | 1824 } |
| 1828 | 1825 |
| 1829 group("fuzzers") { | 1826 group("fuzzers") { |
| 1830 deps = [ | 1827 deps = [ |
| 1831 "//content/test/fuzzer", | 1828 "//content/test/fuzzer", |
| 1832 ] | 1829 ] |
| 1833 } | 1830 } |
| OLD | NEW |