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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 | 7 |
8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
9 [ rebase_path("../chrome_renderer.gypi") ], | 9 [ rebase_path("../chrome_renderer.gypi") ], |
10 "scope", | 10 "scope", |
(...skipping 12 matching lines...) Expand all Loading... |
23 "renderer_resources_300_percent.pak", | 23 "renderer_resources_300_percent.pak", |
24 ] | 24 ] |
25 } | 25 } |
26 | 26 |
27 static_library("renderer") { | 27 static_library("renderer") { |
28 sources = rebase_path(gypi_values.chrome_renderer_sources, ".", "..") | 28 sources = rebase_path(gypi_values.chrome_renderer_sources, ".", "..") |
29 | 29 |
30 defines = [] | 30 defines = [] |
31 | 31 |
32 deps = [ | 32 deps = [ |
33 "//base/allocator", | |
34 "//chrome:resources", | 33 "//chrome:resources", |
35 "//chrome:strings", | 34 "//chrome:strings", |
36 "//chrome/common", | 35 "//chrome/common", |
37 "//chrome/common:mojo_bindings", | 36 "//chrome/common:mojo_bindings", |
38 "//components/autofill/content/renderer", | 37 "//components/autofill/content/renderer", |
39 "//components/cdm/renderer", | 38 "//components/cdm/renderer", |
40 "//components/content_settings/content/common", | 39 "//components/content_settings/content/common", |
41 "//components/data_reduction_proxy/content/common", | 40 "//components/data_reduction_proxy/content/common", |
42 "//components/data_reduction_proxy/core/common", | 41 "//components/data_reduction_proxy/core/common", |
43 "//components/dom_distiller/content:content_renderer", | 42 "//components/dom_distiller/content:content_renderer", |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 ] | 215 ] |
217 } | 216 } |
218 | 217 |
219 if (is_android) { | 218 if (is_android) { |
220 sources -= [ | 219 sources -= [ |
221 "safe_browsing/mock_feature_extractor_clock.cc", | 220 "safe_browsing/mock_feature_extractor_clock.cc", |
222 "safe_browsing/mock_feature_extractor_clock.h", | 221 "safe_browsing/mock_feature_extractor_clock.h", |
223 ] | 222 ] |
224 } | 223 } |
225 } | 224 } |
OLD | NEW |