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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "//third_party/icu", | 65 "//third_party/icu", |
66 "//third_party/re2", | 66 "//third_party/re2", |
67 "//third_party/widevine/cdm:version_h", | 67 "//third_party/widevine/cdm:version_h", |
68 "//ui/surface", | 68 "//ui/surface", |
69 "//v8:v8", | 69 "//v8:v8", |
70 ] | 70 ] |
71 | 71 |
72 if (!is_ios) { | 72 if (!is_ios) { |
73 deps += [ | 73 deps += [ |
74 "//chrome/common/net", | 74 "//chrome/common/net", |
| 75 "//components/contextual_search:renderer", |
75 "//media", | 76 "//media", |
76 ] | 77 ] |
77 } | 78 } |
78 | 79 |
79 if (enable_nacl) { | 80 if (enable_nacl) { |
80 deps += [ | 81 deps += [ |
81 "//components/nacl", | 82 "//components/nacl", |
82 "//components/nacl:nacl_renderer", | 83 "//components/nacl:nacl_renderer", |
83 ] | 84 ] |
84 } | 85 } |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 ] | 215 ] |
215 } | 216 } |
216 | 217 |
217 if (is_android) { | 218 if (is_android) { |
218 sources -= [ | 219 sources -= [ |
219 "safe_browsing/mock_feature_extractor_clock.cc", | 220 "safe_browsing/mock_feature_extractor_clock.cc", |
220 "safe_browsing/mock_feature_extractor_clock.h", | 221 "safe_browsing/mock_feature_extractor_clock.h", |
221 ] | 222 ] |
222 } | 223 } |
223 } | 224 } |
OLD | NEW |