| 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 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1112 "../browser/indexed_db/indexed_db_backing_store_unittest.cc", | 1112 "../browser/indexed_db/indexed_db_backing_store_unittest.cc", |
| 1113 "../browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc", | 1113 "../browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc", |
| 1114 "../browser/indexed_db/indexed_db_database_unittest.cc", | 1114 "../browser/indexed_db/indexed_db_database_unittest.cc", |
| 1115 "../browser/indexed_db/indexed_db_factory_unittest.cc", | 1115 "../browser/indexed_db/indexed_db_factory_unittest.cc", |
| 1116 "../browser/indexed_db/indexed_db_fake_backing_store.cc", | 1116 "../browser/indexed_db/indexed_db_fake_backing_store.cc", |
| 1117 "../browser/indexed_db/indexed_db_fake_backing_store.h", | 1117 "../browser/indexed_db/indexed_db_fake_backing_store.h", |
| 1118 "../browser/indexed_db/indexed_db_leveldb_coding_unittest.cc", | 1118 "../browser/indexed_db/indexed_db_leveldb_coding_unittest.cc", |
| 1119 "../browser/indexed_db/indexed_db_quota_client_unittest.cc", | 1119 "../browser/indexed_db/indexed_db_quota_client_unittest.cc", |
| 1120 "../browser/indexed_db/indexed_db_transaction_unittest.cc", | 1120 "../browser/indexed_db/indexed_db_transaction_unittest.cc", |
| 1121 "../browser/indexed_db/indexed_db_unittest.cc", | 1121 "../browser/indexed_db/indexed_db_unittest.cc", |
| 1122 "../browser/indexed_db/leveldb/leveldb_transaction_unittest.cc", |
| 1122 "../browser/indexed_db/leveldb/leveldb_unittest.cc", | 1123 "../browser/indexed_db/leveldb/leveldb_unittest.cc", |
| 1123 "../browser/indexed_db/leveldb/mock_leveldb_factory.cc", | 1124 "../browser/indexed_db/leveldb/mock_leveldb_factory.cc", |
| 1124 "../browser/indexed_db/leveldb/mock_leveldb_factory.h", | 1125 "../browser/indexed_db/leveldb/mock_leveldb_factory.h", |
| 1125 "../browser/indexed_db/list_set_unittest.cc", | 1126 "../browser/indexed_db/list_set_unittest.cc", |
| 1126 "../browser/indexed_db/mock_indexed_db_callbacks.cc", | 1127 "../browser/indexed_db/mock_indexed_db_callbacks.cc", |
| 1127 "../browser/indexed_db/mock_indexed_db_callbacks.h", | 1128 "../browser/indexed_db/mock_indexed_db_callbacks.h", |
| 1128 "../browser/indexed_db/mock_indexed_db_database_callbacks.cc", | 1129 "../browser/indexed_db/mock_indexed_db_database_callbacks.cc", |
| 1129 "../browser/indexed_db/mock_indexed_db_database_callbacks.h", | 1130 "../browser/indexed_db/mock_indexed_db_database_callbacks.h", |
| 1130 "../browser/indexed_db/mock_indexed_db_factory.cc", | 1131 "../browser/indexed_db/mock_indexed_db_factory.cc", |
| 1131 "../browser/indexed_db/mock_indexed_db_factory.h", | 1132 "../browser/indexed_db/mock_indexed_db_factory.h", |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1823 if (is_android) { | 1824 if (is_android) { |
| 1824 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1825 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1825 } | 1826 } |
| 1826 } | 1827 } |
| 1827 | 1828 |
| 1828 group("fuzzers") { | 1829 group("fuzzers") { |
| 1829 deps = [ | 1830 deps = [ |
| 1830 "//content/test/fuzzer", | 1831 "//content/test/fuzzer", |
| 1831 ] | 1832 ] |
| 1832 } | 1833 } |
| OLD | NEW |