Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Side by Side Diff: content/shell/BUILD.gn

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 "//third_party/WebKit/public:test_support", 232 "//third_party/WebKit/public:test_support",
233 "//third_party/icu", 233 "//third_party/icu",
234 "//ui/base", 234 "//ui/base",
235 "//ui/events:events_base", 235 "//ui/events:events_base",
236 "//ui/gfx", 236 "//ui/gfx",
237 "//ui/gfx/geometry", 237 "//ui/gfx/geometry",
238 "//ui/gfx/ipc", 238 "//ui/gfx/ipc",
239 "//ui/gl", 239 "//ui/gl",
240 "//url", 240 "//url",
241 "//v8", 241 "//v8",
242 "//webkit/browser:storage", 242 "//storage/browser",
243 #'copy_test_netscape_plugin', TODO(GYP) 243 #'copy_test_netscape_plugin', TODO(GYP)
244 ] 244 ]
245 245
246 if (is_win) { 246 if (is_win) {
247 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) 247 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP)
248 248
249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
250 cflags = [ "/wd4267" ] 250 cflags = [ "/wd4267" ]
251 } 251 }
252 252
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 } 458 }
459 459
460 if (!is_android || !is_android_webview_build) { 460 if (!is_android || !is_android_webview_build) {
461 # Some tests rely on this tool. It might be nicer if these tests relied on 461 # Some tests rely on this tool. It might be nicer if these tests relied on
462 # image diff rather than having content shell depend on it. 462 # image diff rather than having content shell depend on it.
463 datadeps = [ 463 datadeps = [
464 "//tools/imagediff($host_toolchain)", 464 "//tools/imagediff($host_toolchain)",
465 ] 465 ]
466 } 466 }
467 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698