| 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", |
| 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 } |
| OLD | NEW |