| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "../public/test/fake_speech_recognition_manager.cc", | 69 "../public/test/fake_speech_recognition_manager.cc", |
| 70 "../public/test/fake_speech_recognition_manager.h", | 70 "../public/test/fake_speech_recognition_manager.h", |
| 71 "../public/test/find_test_utils.cc", | 71 "../public/test/find_test_utils.cc", |
| 72 "../public/test/find_test_utils.h", | 72 "../public/test/find_test_utils.h", |
| 73 "../public/test/frame_load_waiter.cc", | 73 "../public/test/frame_load_waiter.cc", |
| 74 "../public/test/frame_load_waiter.h", | 74 "../public/test/frame_load_waiter.h", |
| 75 "../public/test/javascript_test_observer.cc", | 75 "../public/test/javascript_test_observer.cc", |
| 76 "../public/test/javascript_test_observer.h", | 76 "../public/test/javascript_test_observer.h", |
| 77 "../public/test/memory_coordinator_test_utils.cc", | 77 "../public/test/memory_coordinator_test_utils.cc", |
| 78 "../public/test/memory_coordinator_test_utils.h", | 78 "../public/test/memory_coordinator_test_utils.h", |
| 79 "../public/test/mock_browsing_data_remover_delegate.cc", |
| 80 "../public/test/mock_browsing_data_remover_delegate.h", |
| 79 "../public/test/mock_download_item.cc", | 81 "../public/test/mock_download_item.cc", |
| 80 "../public/test/mock_download_item.h", | 82 "../public/test/mock_download_item.h", |
| 81 "../public/test/mock_download_manager.cc", | 83 "../public/test/mock_download_manager.cc", |
| 82 "../public/test/mock_download_manager.h", | 84 "../public/test/mock_download_manager.h", |
| 83 "../public/test/mock_notification_observer.cc", | 85 "../public/test/mock_notification_observer.cc", |
| 84 "../public/test/mock_notification_observer.h", | 86 "../public/test/mock_notification_observer.h", |
| 85 "../public/test/mock_render_process_host.cc", | 87 "../public/test/mock_render_process_host.cc", |
| 86 "../public/test/mock_render_process_host.h", | 88 "../public/test/mock_render_process_host.h", |
| 87 "../public/test/mock_render_thread.cc", | 89 "../public/test/mock_render_thread.cc", |
| 88 "../public/test/mock_render_thread.h", | 90 "../public/test/mock_render_thread.h", |
| (...skipping 1741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1830 if (is_android) { | 1832 if (is_android) { |
| 1831 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1833 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1832 } | 1834 } |
| 1833 } | 1835 } |
| 1834 | 1836 |
| 1835 group("fuzzers") { | 1837 group("fuzzers") { |
| 1836 deps = [ | 1838 deps = [ |
| 1837 "//content/test/fuzzer", | 1839 "//content/test/fuzzer", |
| 1838 ] | 1840 ] |
| 1839 } | 1841 } |
| OLD | NEW |