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

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

Issue 1131113007: Fix missing dependency in native_viewport_application_delegate.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | no next file » | 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("//third_party/mojo/src/mojo/public/mojo_application.gni") 6 import("//third_party/mojo/src/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 28 matching lines...) Expand all
39 sources = [ 39 sources = [
40 "main.cc", 40 "main.cc",
41 ] 41 ]
42 deps = [ 42 deps = [
43 ":lib", 43 ":lib",
44 "//base", 44 "//base",
45 "//components/gles2", 45 "//components/gles2",
46 "//components/native_viewport/public/cpp:args", 46 "//components/native_viewport/public/cpp:args",
47 "//components/native_viewport/public/interfaces", 47 "//components/native_viewport/public/interfaces",
48 "//mojo/application", 48 "//mojo/application",
49 "//mojo/common:tracing_impl",
50 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", 49 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
51 "//ui/events", 50 "//ui/events",
52 "//ui/events/platform", 51 "//ui/events/platform",
53 "//ui/gl", 52 "//ui/gl",
54 ] 53 ]
55 } 54 }
56 } 55 }
57 56
58 source_set("lib") { 57 source_set("lib") {
59 sources = [ 58 sources = [
(...skipping 17 matching lines...) Expand all
77 sources -= [ "platform_viewport_stub.cc" ] 76 sources -= [ "platform_viewport_stub.cc" ]
78 } 77 }
79 78
80 deps = [ 79 deps = [
81 "//base", 80 "//base",
82 "//components/gles2", 81 "//components/gles2",
83 "//components/native_viewport/public/interfaces", 82 "//components/native_viewport/public/interfaces",
84 "//gpu/command_buffer/service", 83 "//gpu/command_buffer/service",
85 "//mojo/application", 84 "//mojo/application",
86 "//mojo/common", 85 "//mojo/common",
86 "//mojo/common:tracing_impl",
87 "//mojo/converters/geometry", 87 "//mojo/converters/geometry",
88 "//mojo/converters/input_events", 88 "//mojo/converters/input_events",
89 "//mojo/environment:chromium", 89 "//mojo/environment:chromium",
90 "//ui/events", 90 "//ui/events",
91 "//ui/events/platform", 91 "//ui/events/platform",
92 "//ui/gfx", 92 "//ui/gfx",
93 "//ui/gfx/geometry", 93 "//ui/gfx/geometry",
94 "//ui/gl", 94 "//ui/gl",
95 "//ui/mojo/geometry:interfaces", 95 "//ui/mojo/geometry:interfaces",
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 += [ "//ui/platform_window/x11" ] 104 deps += [ "//ui/platform_window/x11" ]
105 } else { 105 } else {
106 sources -= [ "platform_viewport_x11.cc" ] 106 sources -= [ "platform_viewport_x11.cc" ]
107 } 107 }
108 108
109 if (is_win) { 109 if (is_win) {
110 deps += [ "//ui/platform_window/win" ] 110 deps += [ "//ui/platform_window/win" ]
111 } 111 }
112 } 112 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698