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("//extensions/features/features.gni") | 5 import("//extensions/features/features.gni") |
6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
7 | 7 |
8 proto_library("chunk_proto") { | 8 proto_library("chunk_proto") { |
9 sources = [ | 9 sources = [ |
10 "chunk.proto", | 10 "chunk.proto", |
11 ] | 11 ] |
12 } | 12 } |
13 | 13 |
14 static_library("safe_browsing") { | 14 static_library("safe_browsing") { |
15 sources = [ | 15 sources = [ |
16 "browser_url_loader_throttle.cc", | 16 "browser_url_loader_throttle.cc", |
17 "browser_url_loader_throttle.h", | 17 "browser_url_loader_throttle.h", |
18 "chrome_cleaner/chrome_cleaner_controller_win.cc", | 18 "chrome_cleaner/chrome_cleaner_controller_win.cc", |
19 "chrome_cleaner/chrome_cleaner_controller_win.h", | 19 "chrome_cleaner/chrome_cleaner_controller_win.h", |
20 "chrome_cleaner/chrome_cleaner_fetcher_win.cc", | 20 "chrome_cleaner/chrome_cleaner_fetcher_win.cc", |
21 "chrome_cleaner/chrome_cleaner_fetcher_win.h", | 21 "chrome_cleaner/chrome_cleaner_fetcher_win.h", |
| 22 "chrome_cleaner/chrome_cleaner_navigation_util_win.cc", |
| 23 "chrome_cleaner/chrome_cleaner_navigation_util_win.h", |
22 "chrome_cleaner/chrome_cleaner_runner_win.cc", | 24 "chrome_cleaner/chrome_cleaner_runner_win.cc", |
23 "chrome_cleaner/chrome_cleaner_runner_win.h", | 25 "chrome_cleaner/chrome_cleaner_runner_win.h", |
24 "chrome_cleaner/reporter_runner_win.cc", | 26 "chrome_cleaner/reporter_runner_win.cc", |
25 "chrome_cleaner/reporter_runner_win.h", | 27 "chrome_cleaner/reporter_runner_win.h", |
26 "chrome_cleaner/settings_resetter_win.cc", | 28 "chrome_cleaner/settings_resetter_win.cc", |
27 "chrome_cleaner/settings_resetter_win.h", | 29 "chrome_cleaner/settings_resetter_win.h", |
28 "chrome_cleaner/srt_chrome_prompt_impl.cc", | 30 "chrome_cleaner/srt_chrome_prompt_impl.cc", |
29 "chrome_cleaner/srt_chrome_prompt_impl.h", | 31 "chrome_cleaner/srt_chrome_prompt_impl.h", |
30 "chrome_cleaner/srt_client_info_win.cc", | 32 "chrome_cleaner/srt_client_info_win.cc", |
31 "chrome_cleaner/srt_client_info_win.h", | 33 "chrome_cleaner/srt_client_info_win.h", |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 sources += [ | 244 sources += [ |
243 "../loader/safe_browsing_resource_throttle.cc", | 245 "../loader/safe_browsing_resource_throttle.cc", |
244 "../loader/safe_browsing_resource_throttle.h", | 246 "../loader/safe_browsing_resource_throttle.h", |
245 "services_delegate_stub.cc", | 247 "services_delegate_stub.cc", |
246 "services_delegate_stub.h", | 248 "services_delegate_stub.h", |
247 ] | 249 ] |
248 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] | 250 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] |
249 } | 251 } |
250 } | 252 } |
251 } | 253 } |
OLD | NEW |