OLD | NEW |
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", | |
17 "//components/strings:components_strings_grit", | 16 "//components/strings:components_strings_grit", |
18 "//content/public/browser", | 17 "//content/public/browser", |
19 "//net", | 18 "//net", |
20 "//url", | 19 "//url", |
21 ] | 20 ] |
22 } | 21 } |
23 | 22 |
24 static_library("constants") { | 23 static_library("constants") { |
25 sources = [ | 24 sources = [ |
26 "constants.cc", | 25 "constants.cc", |
27 "constants.h", | 26 "constants.h", |
28 ] | 27 ] |
29 } | 28 } |
OLD | NEW |