Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: components/content_settings/core/browser/BUILD.gn

Issue 929793006: Update existing uses of /wd4267 to use the GN config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@x64
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 static_library("browser") { 5 static_library("browser") {
6 sources = [ 6 sources = [
7 "content_settings_client.h", 7 "content_settings_client.h",
8 "content_settings_default_provider.cc", 8 "content_settings_default_provider.cc",
9 "content_settings_default_provider.h", 9 "content_settings_default_provider.h",
10 "content_settings_details.cc", 10 "content_settings_details.cc",
(...skipping 22 matching lines...) Expand all
33 ] 33 ]
34 34
35 deps = [ 35 deps = [
36 "//base", 36 "//base",
37 "//base:prefs", 37 "//base:prefs",
38 "//components/content_settings/core/common", 38 "//components/content_settings/core/common",
39 "//components/pref_registry:pref_registry", 39 "//components/pref_registry:pref_registry",
40 "//net", 40 "//net",
41 "//url", 41 "//url",
42 ] 42 ]
43
44 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
43 } 45 }
44 46
45 source_set("unit_tests") { 47 source_set("unit_tests") {
46 testonly = true 48 testonly = true
47 sources = [ 49 sources = [
48 "content_settings_mock_provider.cc", 50 "content_settings_mock_provider.cc",
49 "content_settings_mock_provider.h", 51 "content_settings_mock_provider.h",
50 "content_settings_provider_unittest.cc", 52 "content_settings_provider_unittest.cc",
51 "content_settings_rule_unittest.cc", 53 "content_settings_rule_unittest.cc",
52 "content_settings_utils_unittest.cc", 54 "content_settings_utils_unittest.cc",
53 ] 55 ]
54 56
55 deps = [ 57 deps = [
56 ":browser", 58 ":browser",
57 "//base", 59 "//base",
58 "//components/content_settings/core/common", 60 "//components/content_settings/core/common",
59 "//components/content_settings/core/test:test_support", 61 "//components/content_settings/core/test:test_support",
60 "//testing/gtest", 62 "//testing/gtest",
61 "//url", 63 "//url",
62 ] 64 ]
63 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698