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

Side by Side Diff: components/safe_browsing/web_ui/BUILD.gn

Issue 2964693003: Added experiments section and exported the list of SafeBrowsing features in WebUI (Closed)
Patch Set: Changed the location of features.cc/.h Created 3 years, 5 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("web_ui") { 5 static_library("web_ui") {
6 sources = [ 6 sources = [
7 "safe_browsing_ui.cc", 7 "safe_browsing_ui.cc",
8 "safe_browsing_ui.h", 8 "safe_browsing_ui.h",
9 ] 9 ]
10 10
11 deps = [ 11 deps = [
12 ":constants", 12 ":constants",
13 "//base", 13 "//base",
14 "//components/resources:components_resources_grit", 14 "//components/resources:components_resources_grit",
15 "//components/resources:components_scaled_resources_grit", 15 "//components/resources:components_scaled_resources_grit",
16 "//components/safe_browsing:features",
16 "//components/strings:components_strings_grit", 17 "//components/strings:components_strings_grit",
17 "//content/public/browser", 18 "//content/public/browser",
18 "//net", 19 "//net",
19 "//url", 20 "//url",
20 ] 21 ]
21 } 22 }
22 23
23 static_library("constants") { 24 static_library("constants") {
24 sources = [ 25 sources = [
25 "constants.cc", 26 "constants.cc",
26 "constants.h", 27 "constants.h",
27 ] 28 ]
28 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698