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

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

Issue 814543006: Move //mojo/{public, edk} underneath //third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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
« no previous file with comments | « content/content_tests.gypi ('k') | content/plugin/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//content/content.gni") 6 import("//content/content.gni")
7 7
8 source_set("gpu") { 8 source_set("gpu") {
9 visibility = [ "//content/*" ] 9 visibility = [ "//content/*" ]
10 10
11 sources = [ 11 sources = [
12 "gpu_main.cc", 12 "gpu_main.cc",
13 "gpu_process.cc", 13 "gpu_process.cc",
14 "gpu_process.h", 14 "gpu_process.h",
15 "gpu_child_thread.cc", 15 "gpu_child_thread.cc",
16 "gpu_child_thread.h", 16 "gpu_child_thread.h",
17 "gpu_watchdog_thread.cc", 17 "gpu_watchdog_thread.cc",
18 "gpu_watchdog_thread.h", 18 "gpu_watchdog_thread.h",
19 "in_process_gpu_thread.cc", 19 "in_process_gpu_thread.cc",
20 "in_process_gpu_thread.h", 20 "in_process_gpu_thread.h",
21 ] 21 ]
22 22
23 configs += [ "//content:content_implementation" ] 23 configs += [ "//content:content_implementation" ]
24 24
25 deps = [ 25 deps = [
26 "//base", 26 "//base",
27 "//content:export", 27 "//content:export",
28 "//content/public/child:child_sources", 28 "//content/public/child:child_sources",
29 "//mojo/public/interfaces/application",
30 "//skia", 29 "//skia",
30 "//third_party/mojo/src/mojo/public/interfaces/application",
31 "//ui/gl", 31 "//ui/gl",
32 ] 32 ]
33 33
34 if (is_win) { 34 if (is_win) {
35 configs += [ 35 configs += [
36 "//third_party/khronos:khronos_headers", 36 "//third_party/khronos:khronos_headers",
37 "//third_party/wtl:wtl_includes", 37 "//third_party/wtl:wtl_includes",
38 ] 38 ]
39 libs = [ "setupapi.lib" ] 39 libs = [ "setupapi.lib" ]
40 deps += [ 40 deps += [
41 "//third_party/angle:libEGL", 41 "//third_party/angle:libEGL",
42 "//third_party/angle:libGLESv2", 42 "//third_party/angle:libGLESv2",
43 ] 43 ]
44 } 44 }
45 45
46 if (is_chromeos && cpu_arch != "arm") { 46 if (is_chromeos && cpu_arch != "arm") {
47 configs += [ "//third_party/libva:libva_config" ] 47 configs += [ "//third_party/libva:libva_config" ]
48 } 48 }
49 49
50 if (use_x11) { 50 if (use_x11) {
51 deps += [ "//ui/events/platform/x11" ] 51 deps += [ "//ui/events/platform/x11" ]
52 } 52 }
53 } 53 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/plugin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698