| 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 import("//testing/test.gni") | 4 import("//testing/test.gni") |
| 5 | 5 |
| 6 component("browser") { | 6 component("browser") { |
| 7 output_name = "storage_browser" | 7 output_name = "storage_browser" |
| 8 sources = [ | 8 sources = [ |
| 9 "blob/blob_data_builder.cc", | 9 "blob/blob_data_builder.cc", |
| 10 "blob/blob_data_builder.h", | 10 "blob/blob_data_builder.h", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "quota/client_usage_tracker.cc", | 159 "quota/client_usage_tracker.cc", |
| 160 "quota/client_usage_tracker.h", | 160 "quota/client_usage_tracker.h", |
| 161 "quota/quota_callbacks.h", | 161 "quota/quota_callbacks.h", |
| 162 "quota/quota_client.h", | 162 "quota/quota_client.h", |
| 163 "quota/quota_database.cc", | 163 "quota/quota_database.cc", |
| 164 "quota/quota_database.h", | 164 "quota/quota_database.h", |
| 165 "quota/quota_manager.cc", | 165 "quota/quota_manager.cc", |
| 166 "quota/quota_manager.h", | 166 "quota/quota_manager.h", |
| 167 "quota/quota_manager_proxy.cc", | 167 "quota/quota_manager_proxy.cc", |
| 168 "quota/quota_manager_proxy.h", | 168 "quota/quota_manager_proxy.h", |
| 169 "quota/quota_settings.cc", | |
| 170 "quota/quota_settings.h", | |
| 171 "quota/quota_task.cc", | 169 "quota/quota_task.cc", |
| 172 "quota/quota_task.h", | 170 "quota/quota_task.h", |
| 173 "quota/quota_temporary_storage_evictor.cc", | 171 "quota/quota_temporary_storage_evictor.cc", |
| 174 "quota/quota_temporary_storage_evictor.h", | 172 "quota/quota_temporary_storage_evictor.h", |
| 175 "quota/special_storage_policy.cc", | 173 "quota/special_storage_policy.cc", |
| 176 "quota/special_storage_policy.h", | 174 "quota/special_storage_policy.h", |
| 177 "quota/storage_monitor.cc", | 175 "quota/storage_monitor.cc", |
| 178 "quota/storage_monitor.h", | 176 "quota/storage_monitor.h", |
| 179 "quota/storage_observer.cc", | 177 "quota/storage_observer.cc", |
| 180 "quota/storage_observer.h", | 178 "quota/storage_observer.h", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 # content_unittests to this target. | 229 # content_unittests to this target. |
| 232 "crbug653751_unittest.cc", | 230 "crbug653751_unittest.cc", |
| 233 ] | 231 ] |
| 234 | 232 |
| 235 deps = [ | 233 deps = [ |
| 236 "//base/test:run_all_unittests", | 234 "//base/test:run_all_unittests", |
| 237 "//base/test:test_support", | 235 "//base/test:test_support", |
| 238 "//testing/gtest", | 236 "//testing/gtest", |
| 239 ] | 237 ] |
| 240 } | 238 } |
| OLD | NEW |