| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "../public/test/mock_render_process_host.cc", | 76 "../public/test/mock_render_process_host.cc", |
| 77 "../public/test/mock_render_process_host.h", | 77 "../public/test/mock_render_process_host.h", |
| 78 "../public/test/mock_render_thread.cc", | 78 "../public/test/mock_render_thread.cc", |
| 79 "../public/test/mock_render_thread.h", | 79 "../public/test/mock_render_thread.h", |
| 80 "../public/test/mock_resource_context.cc", | 80 "../public/test/mock_resource_context.cc", |
| 81 "../public/test/mock_resource_context.h", | 81 "../public/test/mock_resource_context.h", |
| 82 "../public/test/mock_special_storage_policy.cc", | 82 "../public/test/mock_special_storage_policy.cc", |
| 83 "../public/test/mock_special_storage_policy.h", | 83 "../public/test/mock_special_storage_policy.h", |
| 84 "../public/test/mock_storage_client.cc", | 84 "../public/test/mock_storage_client.cc", |
| 85 "../public/test/mock_storage_client.h", | 85 "../public/test/mock_storage_client.h", |
| 86 "../public/test/navigation_simulator.cc", |
| 87 "../public/test/navigation_simulator.h", |
| 86 "../public/test/ppapi_test_utils.cc", | 88 "../public/test/ppapi_test_utils.cc", |
| 87 "../public/test/ppapi_test_utils.h", | 89 "../public/test/ppapi_test_utils.h", |
| 88 "../public/test/render_view_test.cc", | 90 "../public/test/render_view_test.cc", |
| 89 "../public/test/render_view_test.h", | 91 "../public/test/render_view_test.h", |
| 90 "../public/test/sandbox_file_system_test_helper.cc", | 92 "../public/test/sandbox_file_system_test_helper.cc", |
| 91 "../public/test/sandbox_file_system_test_helper.h", | 93 "../public/test/sandbox_file_system_test_helper.h", |
| 92 "../public/test/test_browser_context.cc", | 94 "../public/test/test_browser_context.cc", |
| 93 "../public/test/test_browser_context.h", | 95 "../public/test/test_browser_context.h", |
| 94 "../public/test/test_browser_thread.cc", | 96 "../public/test/test_browser_thread.cc", |
| 95 "../public/test/test_browser_thread.h", | 97 "../public/test/test_browser_thread.h", |
| (...skipping 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1824 if (is_android) { | 1826 if (is_android) { |
| 1825 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1827 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1826 } | 1828 } |
| 1827 } | 1829 } |
| 1828 | 1830 |
| 1829 group("fuzzers") { | 1831 group("fuzzers") { |
| 1830 deps = [ | 1832 deps = [ |
| 1831 "//content/test/fuzzer", | 1833 "//content/test/fuzzer", |
| 1832 ] | 1834 ] |
| 1833 } | 1835 } |
| OLD | NEW |