| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "../public/test/mock_resource_context.cc", | 89 "../public/test/mock_resource_context.cc", |
| 90 "../public/test/mock_resource_context.h", | 90 "../public/test/mock_resource_context.h", |
| 91 "../public/test/navigation_handle_observer.cc", | 91 "../public/test/navigation_handle_observer.cc", |
| 92 "../public/test/navigation_handle_observer.h", | 92 "../public/test/navigation_handle_observer.h", |
| 93 "../public/test/navigation_simulator.cc", | 93 "../public/test/navigation_simulator.cc", |
| 94 "../public/test/navigation_simulator.h", | 94 "../public/test/navigation_simulator.h", |
| 95 "../public/test/ppapi_test_utils.cc", | 95 "../public/test/ppapi_test_utils.cc", |
| 96 "../public/test/ppapi_test_utils.h", | 96 "../public/test/ppapi_test_utils.h", |
| 97 "../public/test/render_view_test.cc", | 97 "../public/test/render_view_test.cc", |
| 98 "../public/test/render_view_test.h", | 98 "../public/test/render_view_test.h", |
| 99 "../public/test/repeated_notification_observer.cc", | |
| 100 "../public/test/repeated_notification_observer.h", | |
| 101 "../public/test/test_browser_context.cc", | 99 "../public/test/test_browser_context.cc", |
| 102 "../public/test/test_browser_context.h", | 100 "../public/test/test_browser_context.h", |
| 103 "../public/test/test_browser_thread.cc", | 101 "../public/test/test_browser_thread.cc", |
| 104 "../public/test/test_browser_thread.h", | 102 "../public/test/test_browser_thread.h", |
| 105 "../public/test/test_browser_thread_bundle.cc", | 103 "../public/test/test_browser_thread_bundle.cc", |
| 106 "../public/test/test_browser_thread_bundle.h", | 104 "../public/test/test_browser_thread_bundle.h", |
| 107 "../public/test/test_content_client_initializer.cc", | 105 "../public/test/test_content_client_initializer.cc", |
| 108 "../public/test/test_content_client_initializer.h", | 106 "../public/test/test_content_client_initializer.h", |
| 109 "../public/test/test_download_request_handler.cc", | 107 "../public/test/test_download_request_handler.cc", |
| 110 "../public/test/test_download_request_handler.h", | 108 "../public/test/test_download_request_handler.h", |
| (...skipping 1770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1881 if (is_android) { | 1879 if (is_android) { |
| 1882 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1880 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1883 } | 1881 } |
| 1884 } | 1882 } |
| 1885 | 1883 |
| 1886 group("fuzzers") { | 1884 group("fuzzers") { |
| 1887 deps = [ | 1885 deps = [ |
| 1888 "//content/test/fuzzer", | 1886 "//content/test/fuzzer", |
| 1889 ] | 1887 ] |
| 1890 } | 1888 } |
| OLD | NEW |