| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "website_settings_registry.h", | 44 "website_settings_registry.h", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 "//base", | 48 "//base", |
| 49 "//components/content_settings/core/common", | 49 "//components/content_settings/core/common", |
| 50 "//components/keyed_service/core", | 50 "//components/keyed_service/core", |
| 51 "//components/pref_registry:pref_registry", | 51 "//components/pref_registry:pref_registry", |
| 52 "//components/prefs", | 52 "//components/prefs", |
| 53 "//components/url_formatter", | 53 "//components/url_formatter", |
| 54 "//extensions/features", |
| 54 "//net", | 55 "//net", |
| 55 "//url", | 56 "//url", |
| 56 ] | 57 ] |
| 57 | 58 |
| 58 configs += [ | 59 configs += [ |
| 59 "//build/config/compiler:no_size_t_to_int_warning", | 60 "//build/config/compiler:no_size_t_to_int_warning", |
| 60 "//build/config/compiler:wexit_time_destructors", | 61 "//build/config/compiler:wexit_time_destructors", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| 63 | 64 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 78 } | 79 } |
| 79 | 80 |
| 80 deps = [ | 81 deps = [ |
| 81 ":browser", | 82 ":browser", |
| 82 "//base", | 83 "//base", |
| 83 "//base/test:test_support", | 84 "//base/test:test_support", |
| 84 "//components/content_settings/core/common", | 85 "//components/content_settings/core/common", |
| 85 "//components/content_settings/core/test:test_support", | 86 "//components/content_settings/core/test:test_support", |
| 86 "//components/pref_registry:test_support", | 87 "//components/pref_registry:test_support", |
| 87 "//components/prefs", | 88 "//components/prefs", |
| 89 "//extensions/features", |
| 88 "//testing/gtest", | 90 "//testing/gtest", |
| 89 "//url", | 91 "//url", |
| 90 ] | 92 ] |
| 91 } | 93 } |
| OLD | NEW |