| 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 grit("resources") { | 8 grit("resources") { |
| 9 source = "resources/renderer_resources.grd" | 9 source = "resources/renderer_resources.grd" |
| 10 use_qualified_include = true | 10 use_qualified_include = true |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "//components/translate/core/common", | 111 "//components/translate/core/common", |
| 112 "//components/translate/core/language_detection", | 112 "//components/translate/core/language_detection", |
| 113 "//components/visitedlink/renderer", | 113 "//components/visitedlink/renderer", |
| 114 "//components/web_cache/renderer", | 114 "//components/web_cache/renderer", |
| 115 "//content/app/resources", | 115 "//content/app/resources", |
| 116 "//content/app/strings", | 116 "//content/app/strings", |
| 117 "//content/public/common", | 117 "//content/public/common", |
| 118 "//content/public/renderer", | 118 "//content/public/renderer", |
| 119 "//media", | 119 "//media", |
| 120 "//net", | 120 "//net", |
| 121 "//ppapi/features", | |
| 122 "//skia", | 121 "//skia", |
| 123 "//storage/common", | 122 "//storage/common", |
| 124 "//third_party/WebKit/public:blink", | 123 "//third_party/WebKit/public:blink", |
| 125 "//third_party/WebKit/public:image_resources", | 124 "//third_party/WebKit/public:image_resources", |
| 126 "//third_party/WebKit/public:resources", | 125 "//third_party/WebKit/public:resources", |
| 127 "//third_party/icu", | 126 "//third_party/icu", |
| 128 "//third_party/re2", | 127 "//third_party/re2", |
| 129 "//third_party/widevine/cdm:headers", | 128 "//third_party/widevine/cdm:version_h", |
| 130 "//ui/surface", | 129 "//ui/surface", |
| 131 "//v8:v8", | 130 "//v8:v8", |
| 132 ] | 131 ] |
| 133 | 132 |
| 134 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 133 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 135 | 134 |
| 136 if (enable_nacl) { | 135 if (enable_nacl) { |
| 137 deps += [ | 136 deps += [ |
| 138 "//components/nacl/loader", | 137 "//components/nacl/loader", |
| 139 "//components/nacl/renderer", | 138 "//components/nacl/renderer", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 ] | 383 ] |
| 385 } | 384 } |
| 386 | 385 |
| 387 if (is_android) { | 386 if (is_android) { |
| 388 sources -= [ | 387 sources -= [ |
| 389 "safe_browsing/mock_feature_extractor_clock.cc", | 388 "safe_browsing/mock_feature_extractor_clock.cc", |
| 390 "safe_browsing/mock_feature_extractor_clock.h", | 389 "safe_browsing/mock_feature_extractor_clock.h", |
| 391 ] | 390 ] |
| 392 } | 391 } |
| 393 } | 392 } |
| OLD | NEW |