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

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

Issue 1824993004: Separate gfx_ipc into skia-dependent and non-skia-dependent parts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nits from tsepez@ Created 4 years, 8 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/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "//third_party/WebKit/public:image_resources", 239 "//third_party/WebKit/public:image_resources",
240 "//third_party/WebKit/public:resources", 240 "//third_party/WebKit/public:resources",
241 "//third_party/WebKit/public:test_support", 241 "//third_party/WebKit/public:test_support",
242 "//third_party/icu", 242 "//third_party/icu",
243 "//ui/base", 243 "//ui/base",
244 "//ui/base/ime", 244 "//ui/base/ime",
245 "//ui/events:events_base", 245 "//ui/events:events_base",
246 "//ui/gfx", 246 "//ui/gfx",
247 "//ui/gfx/geometry", 247 "//ui/gfx/geometry",
248 "//ui/gfx/ipc", 248 "//ui/gfx/ipc",
249 "//ui/gfx/ipc/skia",
249 "//ui/gl", 250 "//ui/gl",
250 "//url", 251 "//url",
251 "//v8", 252 "//v8",
252 253
253 #'copy_test_netscape_plugin', TODO(GYP) 254 #'copy_test_netscape_plugin', TODO(GYP)
254 ] 255 ]
255 if (enable_plugins) { 256 if (enable_plugins) {
256 deps += [ 257 deps += [
257 "//content/ppapi_plugin", 258 "//content/ppapi_plugin",
258 "//ppapi:blink_deprecated_test_plugin", 259 "//ppapi:blink_deprecated_test_plugin",
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 sources = [ 524 sources = [
524 "app/shell_content_main.cc", 525 "app/shell_content_main.cc",
525 "app/shell_content_main.h", 526 "app/shell_content_main.h",
526 ] 527 ]
527 528
528 deps = [ 529 deps = [
529 ":content_shell_lib", 530 ":content_shell_lib",
530 ] 531 ]
531 } 532 }
532 } 533 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698