| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "fileapi/sandbox_origin_database_interface.h", | 149 "fileapi/sandbox_origin_database_interface.h", |
| 150 "fileapi/sandbox_prioritized_origin_database.cc", | 150 "fileapi/sandbox_prioritized_origin_database.cc", |
| 151 "fileapi/sandbox_prioritized_origin_database.h", | 151 "fileapi/sandbox_prioritized_origin_database.h", |
| 152 "fileapi/sandbox_quota_observer.cc", | 152 "fileapi/sandbox_quota_observer.cc", |
| 153 "fileapi/sandbox_quota_observer.h", | 153 "fileapi/sandbox_quota_observer.h", |
| 154 "fileapi/task_runner_bound_observer_list.h", | 154 "fileapi/task_runner_bound_observer_list.h", |
| 155 "fileapi/timed_task_helper.cc", | 155 "fileapi/timed_task_helper.cc", |
| 156 "fileapi/timed_task_helper.h", | 156 "fileapi/timed_task_helper.h", |
| 157 "fileapi/transient_file_util.cc", | 157 "fileapi/transient_file_util.cc", |
| 158 "fileapi/transient_file_util.h", | 158 "fileapi/transient_file_util.h", |
| 159 "fileapi/watcher_manager.h", |
| 159 "quota/client_usage_tracker.cc", | 160 "quota/client_usage_tracker.cc", |
| 160 "quota/client_usage_tracker.h", | 161 "quota/client_usage_tracker.h", |
| 161 "quota/quota_callbacks.h", | 162 "quota/quota_callbacks.h", |
| 162 "quota/quota_client.h", | 163 "quota/quota_client.h", |
| 163 "quota/quota_database.cc", | 164 "quota/quota_database.cc", |
| 164 "quota/quota_database.h", | 165 "quota/quota_database.h", |
| 165 "quota/quota_manager.cc", | 166 "quota/quota_manager.cc", |
| 166 "quota/quota_manager.h", | 167 "quota/quota_manager.h", |
| 167 "quota/quota_manager_proxy.cc", | 168 "quota/quota_manager_proxy.cc", |
| 168 "quota/quota_manager_proxy.h", | 169 "quota/quota_manager_proxy.h", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 # content_unittests to this target. | 232 # content_unittests to this target. |
| 232 "crbug653751_unittest.cc", | 233 "crbug653751_unittest.cc", |
| 233 ] | 234 ] |
| 234 | 235 |
| 235 deps = [ | 236 deps = [ |
| 236 "//base/test:run_all_unittests", | 237 "//base/test:run_all_unittests", |
| 237 "//base/test:test_support", | 238 "//base/test:test_support", |
| 238 "//testing/gtest", | 239 "//testing/gtest", |
| 239 ] | 240 ] |
| 240 } | 241 } |
| OLD | NEW |