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

Side by Side Diff: services/native_viewport/BUILD.gn

Issue 790213002: Restructure public side of geometry service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Nits Created 6 years 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 | « services/gles2/gpu_impl.h ('k') | services/surfaces/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("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "//cc/surfaces", 76 "//cc/surfaces",
77 "//cc/surfaces:surface_id", 77 "//cc/surfaces:surface_id",
78 "//gpu/command_buffer/service", 78 "//gpu/command_buffer/service",
79 "//mojo/application", 79 "//mojo/application",
80 "//mojo/common", 80 "//mojo/common",
81 "//mojo/converters/geometry", 81 "//mojo/converters/geometry",
82 "//mojo/converters/input_events", 82 "//mojo/converters/input_events",
83 "//mojo/converters/surfaces", 83 "//mojo/converters/surfaces",
84 "//mojo/environment:chromium", 84 "//mojo/environment:chromium",
85 "//services/gles2", 85 "//services/gles2",
86 "//mojo/services/public/interfaces/geometry", 86 "//mojo/services/geometry/public/interfaces",
87 "//mojo/services/public/interfaces/gpu", 87 "//mojo/services/public/interfaces/gpu",
88 "//mojo/services/public/interfaces/native_viewport", 88 "//mojo/services/public/interfaces/native_viewport",
89 "//mojo/services/surfaces/public/cpp", 89 "//mojo/services/surfaces/public/cpp",
90 "//mojo/services/surfaces/public/interfaces", 90 "//mojo/services/surfaces/public/interfaces",
91 "//ui/events", 91 "//ui/events",
92 "//ui/events/platform", 92 "//ui/events/platform",
93 "//ui/gfx", 93 "//ui/gfx",
94 "//ui/gfx/geometry", 94 "//ui/gfx/geometry",
95 "//ui/gl", 95 "//ui/gl",
96 "//ui/platform_window", 96 "//ui/platform_window",
97 ] 97 ]
98 98
99 if (is_android) { 99 if (is_android) {
100 deps += [ ":jni_headers" ] 100 deps += [ ":jni_headers" ]
101 } 101 }
102 102
103 if (use_x11) { 103 if (use_x11) {
104 deps += [ 104 deps += [
105 "//ui/events/platform/x11", 105 "//ui/events/platform/x11",
106 "//ui/platform_window/x11", 106 "//ui/platform_window/x11",
107 ] 107 ]
108 } else { 108 } else {
109 sources -= [ "platform_viewport_x11.cc" ] 109 sources -= [ "platform_viewport_x11.cc" ]
110 } 110 }
111 111
112 if (is_win) { 112 if (is_win) {
113 deps += [ "//ui/platform_window/win" ] 113 deps += [ "//ui/platform_window/win" ]
114 } 114 }
115 } 115 }
OLDNEW
« no previous file with comments | « services/gles2/gpu_impl.h ('k') | services/surfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698