| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "//base:base_static", | 207 "//base:base_static", |
| 208 "//base/allocator", | 208 "//base/allocator", |
| 209 "//base/third_party/dynamic_annotations", | 209 "//base/third_party/dynamic_annotations", |
| 210 "//cc", | 210 "//cc", |
| 211 "//components/crash/app", | 211 "//components/crash/app", |
| 212 "//content:resources", | 212 "//content:resources", |
| 213 "//content/app:both", | 213 "//content/app:both", |
| 214 "//content/app/resources", | 214 "//content/app/resources", |
| 215 "//content/app/strings", | 215 "//content/app/strings", |
| 216 "//content/gpu", | 216 "//content/gpu", |
| 217 "//content/ppapi_plugin", | |
| 218 "//content/public/browser", | 217 "//content/public/browser", |
| 219 "//content/public/common", | 218 "//content/public/common", |
| 220 "//content/public/plugin", | 219 "//content/public/plugin", |
| 221 "//content/public/renderer", | 220 "//content/public/renderer", |
| 222 "//content/public/utility", | 221 "//content/public/utility", |
| 223 "//content/test:layouttest_support", | 222 "//content/test:layouttest_support", |
| 224 "//gin", | 223 "//gin", |
| 225 "//gpu", | 224 "//gpu", |
| 226 "//ipc", | 225 "//ipc", |
| 227 "//media", | 226 "//media", |
| 228 "//net", | 227 "//net", |
| 229 "//net:net_resources", | 228 "//net:net_resources", |
| 230 "//skia", | 229 "//skia", |
| 231 "//storage/browser", | 230 "//storage/browser", |
| 232 "//third_party/WebKit/public:blink", | 231 "//third_party/WebKit/public:blink", |
| 233 "//third_party/WebKit/public:resources", | 232 "//third_party/WebKit/public:resources", |
| 234 "//third_party/WebKit/public:test_support", | 233 "//third_party/WebKit/public:test_support", |
| 235 "//third_party/icu", | 234 "//third_party/icu", |
| 236 "//ui/base", | 235 "//ui/base", |
| 237 "//ui/events:events_base", | 236 "//ui/events:events_base", |
| 238 "//ui/gfx", | 237 "//ui/gfx", |
| 239 "//ui/gfx/geometry", | 238 "//ui/gfx/geometry", |
| 240 "//ui/gfx/ipc", | 239 "//ui/gfx/ipc", |
| 241 "//ui/gl", | 240 "//ui/gl", |
| 242 "//url", | 241 "//url", |
| 243 "//v8", | 242 "//v8", |
| 244 #'copy_test_netscape_plugin', TODO(GYP) | 243 #'copy_test_netscape_plugin', TODO(GYP) |
| 245 ] | 244 ] |
| 245 if (enable_plugins) { |
| 246 deps += [ "//content/ppapi_plugin" ] |
| 247 } |
| 246 | 248 |
| 247 if (is_win) { | 249 if (is_win) { |
| 248 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) | 250 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) |
| 249 | 251 |
| 250 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 252 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 251 cflags = [ "/wd4267" ] | 253 cflags = [ "/wd4267" ] |
| 252 } | 254 } |
| 253 | 255 |
| 254 if (is_linux) { | 256 if (is_linux) { |
| 255 configs += [ "//build/config/linux:fontconfig" ] | 257 configs += [ "//build/config/linux:fontconfig" ] |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 } | 462 } |
| 461 | 463 |
| 462 if (!is_android || !is_android_webview_build) { | 464 if (!is_android || !is_android_webview_build) { |
| 463 # Some tests rely on this tool. It might be nicer if these tests relied on | 465 # Some tests rely on this tool. It might be nicer if these tests relied on |
| 464 # image diff rather than having content shell depend on it. | 466 # image diff rather than having content shell depend on it. |
| 465 datadeps = [ | 467 datadeps = [ |
| 466 "//tools/imagediff($host_toolchain)", | 468 "//tools/imagediff($host_toolchain)", |
| 467 ] | 469 ] |
| 468 } | 470 } |
| 469 } | 471 } |
| OLD | NEW |