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

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

Issue 640893003: Move mojo/services/public/cpp TypeConverters to mojo/converters. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN. Created 6 years, 2 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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (!is_android) { 7 if (!is_android) {
8 shared_library("native_viewport") { 8 shared_library("native_viewport") {
9 output_name = "mojo_native_viewport_service" 9 output_name = "mojo_native_viewport_service"
10 10
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 } 23 }
24 24
25 source_set("lib") { 25 source_set("lib") {
26 deps = [ 26 deps = [
27 "//base", 27 "//base",
28 "//cc/surfaces", 28 "//cc/surfaces",
29 "//gpu/command_buffer/service", 29 "//gpu/command_buffer/service",
30 "//mojo/application", 30 "//mojo/application",
31 "//mojo/common", 31 "//mojo/common",
32 "//mojo/converters",
32 "//mojo/environment:chromium", 33 "//mojo/environment:chromium",
33 "//mojo/services/gles2", 34 "//mojo/services/gles2",
34 "//mojo/services/public/cpp/geometry",
35 "//mojo/services/public/cpp/input_events",
36 "//mojo/services/public/cpp/surfaces",
37 "//mojo/services/public/interfaces/geometry", 35 "//mojo/services/public/interfaces/geometry",
38 "//mojo/services/public/interfaces/gpu", 36 "//mojo/services/public/interfaces/gpu",
39 "//mojo/services/public/interfaces/native_viewport", 37 "//mojo/services/public/interfaces/native_viewport",
40 "//mojo/services/public/interfaces/surfaces", 38 "//mojo/services/public/interfaces/surfaces",
41 "//ui/events", 39 "//ui/events",
42 "//ui/events/platform", 40 "//ui/events/platform",
43 "//ui/gfx", 41 "//ui/gfx",
44 "//ui/gfx/geometry", 42 "//ui/gfx/geometry",
45 "//ui/gl", 43 "//ui/gl",
46 "//ui/platform_window", 44 "//ui/platform_window",
(...skipping 28 matching lines...) Expand all
75 deps += [ 73 deps += [
76 "//ui/events/platform/x11", 74 "//ui/events/platform/x11",
77 "//ui/platform_window/x11", 75 "//ui/platform_window/x11",
78 ] 76 ]
79 } 77 }
80 78
81 if (use_ozone) { 79 if (use_ozone) {
82 sources += [ "platform_viewport_ozone.cc" ] 80 sources += [ "platform_viewport_ozone.cc" ]
83 } 81 }
84 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698