| 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 source_set("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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "//base", | 57 "//base", |
| 58 "//components/content_settings/core/common", | 58 "//components/content_settings/core/common", |
| 59 "//components/keyed_service/core", | 59 "//components/keyed_service/core", |
| 60 "//components/pref_registry:pref_registry", | 60 "//components/pref_registry:pref_registry", |
| 61 "//components/prefs", | 61 "//components/prefs", |
| 62 "//components/url_formatter", | 62 "//components/url_formatter", |
| 63 "//net", | 63 "//net", |
| 64 "//url", | 64 "//url", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 67 configs += [ |
| 68 "//build/config/compiler:no_size_t_to_int_warning", |
| 69 "//build/config/compiler:wexit_time_destructors", |
| 70 ] |
| 68 } | 71 } |
| 69 | 72 |
| 70 source_set("unit_tests") { | 73 source_set("unit_tests") { |
| 71 testonly = true | 74 testonly = true |
| 72 sources = [ | 75 sources = [ |
| 73 "content_settings_mock_provider.cc", | 76 "content_settings_mock_provider.cc", |
| 74 "content_settings_mock_provider.h", | 77 "content_settings_mock_provider.h", |
| 75 "content_settings_registry_unittest.cc", | 78 "content_settings_registry_unittest.cc", |
| 76 "content_settings_rule_unittest.cc", | 79 "content_settings_rule_unittest.cc", |
| 77 "content_settings_utils_unittest.cc", | 80 "content_settings_utils_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 88 "//base", | 91 "//base", |
| 89 "//base/test:test_support", | 92 "//base/test:test_support", |
| 90 "//components/content_settings/core/common", | 93 "//components/content_settings/core/common", |
| 91 "//components/content_settings/core/test:test_support", | 94 "//components/content_settings/core/test:test_support", |
| 92 "//components/pref_registry:test_support", | 95 "//components/pref_registry:test_support", |
| 93 "//components/prefs", | 96 "//components/prefs", |
| 94 "//testing/gtest", | 97 "//testing/gtest", |
| 95 "//url", | 98 "//url", |
| 96 ] | 99 ] |
| 97 } | 100 } |
| OLD | NEW |