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

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

Issue 1799713002: gpu_host_messages.h => content/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed an unnecessary include Created 4 years, 9 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("//content/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 16 matching lines...) Expand all
27 "//base:i18n", 27 "//base:i18n",
28 "//cc", 28 "//cc",
29 "//cc/blink", 29 "//cc/blink",
30 "//cc/proto", 30 "//cc/proto",
31 "//cc/surfaces", 31 "//cc/surfaces",
32 "//cc/surfaces:surface_id", 32 "//cc/surfaces:surface_id",
33 "//components/scheduler:scheduler", 33 "//components/scheduler:scheduler",
34 "//components/url_formatter", 34 "//components/url_formatter",
35 "//content:resources", 35 "//content:resources",
36 "//content/common:mojo_bindings", 36 "//content/common:mojo_bindings",
37 "//content/gpu:gpu_sources",
37 "//content/public/child:child_sources", 38 "//content/public/child:child_sources",
38 "//content/public/common:common_sources", 39 "//content/public/common:common_sources",
39 "//content/public/common:feature_h264_with_openh264_ffmpeg", 40 "//content/public/common:feature_h264_with_openh264_ffmpeg",
40 "//content/public/common:features", 41 "//content/public/common:features",
41 "//content/public/common:mojo_bindings", 42 "//content/public/common:mojo_bindings",
42 "//crypto:platform", 43 "//crypto:platform",
43 "//device/battery:mojo_bindings", 44 "//device/battery:mojo_bindings",
44 "//device/bluetooth", 45 "//device/bluetooth",
45 "//device/usb/public/interfaces", 46 "//device/usb/public/interfaces",
46 "//device/vibration:mojo_bindings", 47 "//device/vibration:mojo_bindings",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 } 240 }
240 241
241 if (use_seccomp_bpf) { 242 if (use_seccomp_bpf) {
242 defines += [ "USE_SECCOMP_BPF" ] 243 defines += [ "USE_SECCOMP_BPF" ]
243 } 244 }
244 245
245 if (use_ozone) { 246 if (use_ozone) {
246 deps += [ "//ui/ozone" ] 247 deps += [ "//ui/ozone" ]
247 } 248 }
248 } 249 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698