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