| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "content_settings_binary_value_map.cc", | 9 "content_settings_binary_value_map.cc", |
| 10 "content_settings_binary_value_map.h", | 10 "content_settings_binary_value_map.h", |
| 11 "content_settings_client.h", | 11 "content_settings_client.h", |
| 12 "content_settings_default_provider.cc", | 12 "content_settings_default_provider.cc", |
| 13 "content_settings_default_provider.h", | 13 "content_settings_default_provider.h", |
| 14 "content_settings_details.cc", | 14 "content_settings_details.cc", |
| 15 "content_settings_details.h", | 15 "content_settings_details.h", |
| 16 "content_settings_info.cc", | 16 "content_settings_info.cc", |
| 17 "content_settings_info.h", | 17 "content_settings_info.h", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//base", | 91 "//base", |
| 92 "//base/test:test_support", | 92 "//base/test:test_support", |
| 93 "//components/content_settings/core/common", | 93 "//components/content_settings/core/common", |
| 94 "//components/content_settings/core/test:test_support", | 94 "//components/content_settings/core/test:test_support", |
| 95 "//components/pref_registry:test_support", | 95 "//components/pref_registry:test_support", |
| 96 "//components/prefs", | 96 "//components/prefs", |
| 97 "//testing/gtest", | 97 "//testing/gtest", |
| 98 "//url", | 98 "//url", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| OLD | NEW |