| 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 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1855 if (is_android) { | 1857 if (is_android) { |
| 1856 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1858 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1857 } | 1859 } |
| 1858 } | 1860 } |
| 1859 | 1861 |
| 1860 group("fuzzers") { | 1862 group("fuzzers") { |
| 1861 deps = [ | 1863 deps = [ |
| 1862 "//content/test/fuzzer", | 1864 "//content/test/fuzzer", |
| 1863 ] | 1865 ] |
| 1864 } | 1866 } |
| OLD | NEW |