| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "browsing_data/browsing_data_local_storage_helper.cc", | 160 "browsing_data/browsing_data_local_storage_helper.cc", |
| 161 "browsing_data/browsing_data_local_storage_helper.h", | 161 "browsing_data/browsing_data_local_storage_helper.h", |
| 162 "browsing_data/browsing_data_media_license_helper.cc", | 162 "browsing_data/browsing_data_media_license_helper.cc", |
| 163 "browsing_data/browsing_data_media_license_helper.h", | 163 "browsing_data/browsing_data_media_license_helper.h", |
| 164 "browsing_data/browsing_data_quota_helper.cc", | 164 "browsing_data/browsing_data_quota_helper.cc", |
| 165 "browsing_data/browsing_data_quota_helper.h", | 165 "browsing_data/browsing_data_quota_helper.h", |
| 166 "browsing_data/browsing_data_quota_helper_impl.cc", | 166 "browsing_data/browsing_data_quota_helper_impl.cc", |
| 167 "browsing_data/browsing_data_quota_helper_impl.h", | 167 "browsing_data/browsing_data_quota_helper_impl.h", |
| 168 "browsing_data/browsing_data_remover.cc", | 168 "browsing_data/browsing_data_remover.cc", |
| 169 "browsing_data/browsing_data_remover.h", | 169 "browsing_data/browsing_data_remover.h", |
| 170 "browsing_data/browsing_data_remover_delegate.h", |
| 170 "browsing_data/browsing_data_remover_factory.cc", | 171 "browsing_data/browsing_data_remover_factory.cc", |
| 171 "browsing_data/browsing_data_remover_factory.h", | 172 "browsing_data/browsing_data_remover_factory.h", |
| 172 "browsing_data/browsing_data_service_worker_helper.cc", | 173 "browsing_data/browsing_data_service_worker_helper.cc", |
| 173 "browsing_data/browsing_data_service_worker_helper.h", | 174 "browsing_data/browsing_data_service_worker_helper.h", |
| 174 "browsing_data/cache_counter.cc", | 175 "browsing_data/cache_counter.cc", |
| 175 "browsing_data/cache_counter.h", | 176 "browsing_data/cache_counter.h", |
| 176 "browsing_data/canonical_cookie_hash.cc", | 177 "browsing_data/canonical_cookie_hash.cc", |
| 177 "browsing_data/canonical_cookie_hash.h", | 178 "browsing_data/canonical_cookie_hash.h", |
| 179 "browsing_data/chrome_browsing_data_remover_delegate.cc", |
| 180 "browsing_data/chrome_browsing_data_remover_delegate.h", |
| 178 "browsing_data/cookies_tree_model.cc", | 181 "browsing_data/cookies_tree_model.cc", |
| 179 "browsing_data/cookies_tree_model.h", | 182 "browsing_data/cookies_tree_model.h", |
| 180 "browsing_data/downloads_counter.cc", | 183 "browsing_data/downloads_counter.cc", |
| 181 "browsing_data/downloads_counter.h", | 184 "browsing_data/downloads_counter.h", |
| 182 "browsing_data/local_data_container.cc", | 185 "browsing_data/local_data_container.cc", |
| 183 "browsing_data/local_data_container.h", | 186 "browsing_data/local_data_container.h", |
| 184 "browsing_data/media_licenses_counter.cc", | 187 "browsing_data/media_licenses_counter.cc", |
| 185 "browsing_data/media_licenses_counter.h", | 188 "browsing_data/media_licenses_counter.h", |
| 186 "browsing_data/origin_filter_builder.cc", | 189 "browsing_data/origin_filter_builder.cc", |
| 187 "browsing_data/origin_filter_builder.h", | 190 "browsing_data/origin_filter_builder.h", |
| (...skipping 4257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4445 # linking all of the test support. | 4448 # linking all of the test support. |
| 4446 static_library("pepper_cdm_test_constants") { | 4449 static_library("pepper_cdm_test_constants") { |
| 4447 testonly = true | 4450 testonly = true |
| 4448 visibility = [ "//chrome/*" ] | 4451 visibility = [ "//chrome/*" ] |
| 4449 sources = [ | 4452 sources = [ |
| 4450 "media/pepper_cdm_test_constants.cc", | 4453 "media/pepper_cdm_test_constants.cc", |
| 4451 "media/pepper_cdm_test_constants.h", | 4454 "media/pepper_cdm_test_constants.h", |
| 4452 ] | 4455 ] |
| 4453 } | 4456 } |
| 4454 } | 4457 } |
| OLD | NEW |