| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "content_browser_sanity_checker.cc", | 158 "content_browser_sanity_checker.cc", |
| 159 "content_browser_sanity_checker.h", | 159 "content_browser_sanity_checker.h", |
| 160 "content_test_suite.cc", | 160 "content_test_suite.cc", |
| 161 "content_test_suite.h", | 161 "content_test_suite.h", |
| 162 "dwrite_font_fake_sender_win.cc", | 162 "dwrite_font_fake_sender_win.cc", |
| 163 "dwrite_font_fake_sender_win.h", | 163 "dwrite_font_fake_sender_win.h", |
| 164 "fake_compositor_dependencies.cc", | 164 "fake_compositor_dependencies.cc", |
| 165 "fake_compositor_dependencies.h", | 165 "fake_compositor_dependencies.h", |
| 166 "fake_plugin_service.cc", | 166 "fake_plugin_service.cc", |
| 167 "fake_plugin_service.h", | 167 "fake_plugin_service.h", |
| 168 "fake_renderer_compositor_frame_sink.cc", |
| 169 "fake_renderer_compositor_frame_sink.h", |
| 168 "mock_background_sync_controller.cc", | 170 "mock_background_sync_controller.cc", |
| 169 "mock_background_sync_controller.h", | 171 "mock_background_sync_controller.h", |
| 170 "mock_google_streaming_server.cc", | 172 "mock_google_streaming_server.cc", |
| 171 "mock_google_streaming_server.h", | 173 "mock_google_streaming_server.h", |
| 172 "mock_keyboard.cc", | 174 "mock_keyboard.cc", |
| 173 "mock_keyboard.h", | 175 "mock_keyboard.h", |
| 174 "mock_keyboard_driver_win.cc", | 176 "mock_keyboard_driver_win.cc", |
| 175 "mock_keyboard_driver_win.h", | 177 "mock_keyboard_driver_win.h", |
| 176 "mock_leveldb_database.cc", | 178 "mock_leveldb_database.cc", |
| 177 "mock_leveldb_database.h", | 179 "mock_leveldb_database.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 "//ipc", | 240 "//ipc", |
| 239 "//third_party/WebKit/public:blink", | 241 "//third_party/WebKit/public:blink", |
| 240 "//third_party/WebKit/public:test_support", | 242 "//third_party/WebKit/public:test_support", |
| 241 ] | 243 ] |
| 242 deps = [ | 244 deps = [ |
| 243 ":content_test_mojo_bindings", | 245 ":content_test_mojo_bindings", |
| 244 "//base/third_party/dynamic_annotations", | 246 "//base/third_party/dynamic_annotations", |
| 245 "//cc:test_support", | 247 "//cc:test_support", |
| 246 "//cc/blink", | 248 "//cc/blink", |
| 247 "//cc/ipc", | 249 "//cc/ipc", |
| 250 "//cc/ipc:interfaces", |
| 248 "//cc/surfaces", | 251 "//cc/surfaces", |
| 249 "//components/display_compositor", | 252 "//components/display_compositor", |
| 250 "//components/leveldb/public/interfaces", | 253 "//components/leveldb/public/interfaces", |
| 251 "//components/payments/content:mojom_payment_app", | 254 "//components/payments/content:mojom_payment_app", |
| 252 "//content/app:both_for_content_tests", | 255 "//content/app:both_for_content_tests", |
| 253 "//content/browser:for_content_tests", | 256 "//content/browser:for_content_tests", |
| 254 "//content/browser/speech/proto", | 257 "//content/browser/speech/proto", |
| 255 "//content/child:for_content_tests", | 258 "//content/child:for_content_tests", |
| 256 "//content/gpu", | 259 "//content/gpu", |
| 257 "//content/public/browser", | 260 "//content/public/browser", |
| (...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1855 if (is_android) { | 1858 if (is_android) { |
| 1856 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1859 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1857 } | 1860 } |
| 1858 } | 1861 } |
| 1859 | 1862 |
| 1860 group("fuzzers") { | 1863 group("fuzzers") { |
| 1861 deps = [ | 1864 deps = [ |
| 1862 "//content/test/fuzzer", | 1865 "//content/test/fuzzer", |
| 1863 ] | 1866 ] |
| 1864 } | 1867 } |
| OLD | NEW |