| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 sources = [ | 31 sources = [ |
| 32 "../browser/download/mock_download_file.cc", | 32 "../browser/download/mock_download_file.cc", |
| 33 "../browser/download/mock_download_file.h", | 33 "../browser/download/mock_download_file.h", |
| 34 "../browser/download/mock_download_job.cc", | 34 "../browser/download/mock_download_job.cc", |
| 35 "../browser/download/mock_download_job.h", | 35 "../browser/download/mock_download_job.h", |
| 36 "../browser/media/session/mock_media_session_observer.cc", | 36 "../browser/media/session/mock_media_session_observer.cc", |
| 37 "../browser/media/session/mock_media_session_observer.h", | 37 "../browser/media/session/mock_media_session_observer.h", |
| 38 "../browser/service_worker/embedded_worker_test_helper.cc", | 38 "../browser/service_worker/embedded_worker_test_helper.cc", |
| 39 "../browser/service_worker/embedded_worker_test_helper.h", | 39 "../browser/service_worker/embedded_worker_test_helper.h", |
| 40 "../browser/service_worker/service_worker_test_utils.cc", |
| 40 "../public/test/async_file_test_helper.cc", | 41 "../public/test/async_file_test_helper.cc", |
| 41 "../public/test/async_file_test_helper.h", | 42 "../public/test/async_file_test_helper.h", |
| 42 "../public/test/background_sync_test_util.cc", | 43 "../public/test/background_sync_test_util.cc", |
| 43 "../public/test/background_sync_test_util.h", | 44 "../public/test/background_sync_test_util.h", |
| 44 "../public/test/browser_side_navigation_test_utils.cc", | 45 "../public/test/browser_side_navigation_test_utils.cc", |
| 45 "../public/test/browser_side_navigation_test_utils.h", | 46 "../public/test/browser_side_navigation_test_utils.h", |
| 46 "../public/test/browser_test.h", | 47 "../public/test/browser_test.h", |
| 47 "../public/test/browser_test_base.cc", | 48 "../public/test/browser_test_base.cc", |
| 48 "../public/test/browser_test_base.h", | 49 "../public/test/browser_test_base.h", |
| 49 "../public/test/browser_test_utils.cc", | 50 "../public/test/browser_test_utils.cc", |
| (...skipping 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 if (is_android) { | 1816 if (is_android) { |
| 1816 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1817 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1817 } | 1818 } |
| 1818 } | 1819 } |
| 1819 | 1820 |
| 1820 group("fuzzers") { | 1821 group("fuzzers") { |
| 1821 deps = [ | 1822 deps = [ |
| 1822 "//content/test/fuzzer", | 1823 "//content/test/fuzzer", |
| 1823 ] | 1824 ] |
| 1824 } | 1825 } |
| OLD | NEW |