| 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 static_library("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", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "cookie_settings.h", | 39 "cookie_settings.h", |
| 40 "host_content_settings_map.cc", | 40 "host_content_settings_map.cc", |
| 41 "host_content_settings_map.h", | 41 "host_content_settings_map.h", |
| 42 "local_shared_objects_counter.h", | 42 "local_shared_objects_counter.h", |
| 43 "website_settings_info.cc", | 43 "website_settings_info.cc", |
| 44 "website_settings_info.h", | 44 "website_settings_info.h", |
| 45 "website_settings_registry.cc", | 45 "website_settings_registry.cc", |
| 46 "website_settings_registry.h", | 46 "website_settings_registry.h", |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 if (enable_plugins) { | |
| 50 sources += [ | |
| 51 "plugins_field_trial.cc", | |
| 52 "plugins_field_trial.h", | |
| 53 ] | |
| 54 } | |
| 55 | |
| 56 deps = [ | 49 deps = [ |
| 57 "//base", | 50 "//base", |
| 58 "//components/content_settings/core/common", | 51 "//components/content_settings/core/common", |
| 59 "//components/keyed_service/core", | 52 "//components/keyed_service/core", |
| 60 "//components/pref_registry:pref_registry", | 53 "//components/pref_registry:pref_registry", |
| 61 "//components/prefs", | 54 "//components/prefs", |
| 62 "//components/url_formatter", | 55 "//components/url_formatter", |
| 63 "//net", | 56 "//net", |
| 64 "//url", | 57 "//url", |
| 65 ] | 58 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 91 "//base", | 84 "//base", |
| 92 "//base/test:test_support", | 85 "//base/test:test_support", |
| 93 "//components/content_settings/core/common", | 86 "//components/content_settings/core/common", |
| 94 "//components/content_settings/core/test:test_support", | 87 "//components/content_settings/core/test:test_support", |
| 95 "//components/pref_registry:test_support", | 88 "//components/pref_registry:test_support", |
| 96 "//components/prefs", | 89 "//components/prefs", |
| 97 "//testing/gtest", | 90 "//testing/gtest", |
| 98 "//url", | 91 "//url", |
| 99 ] | 92 ] |
| 100 } | 93 } |
| OLD | NEW |