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

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

Issue 1085233004: Moves services implementations out of third_party/mojo_services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unnecessary changes Created 5 years, 8 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/mojo/src/mojo/public/mojo.gni") 6 import("//third_party/mojo/src/mojo/public/mojo.gni")
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Repack this here. 10 # Repack this here.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ] 96 ]
97 97
98 include_dirs = [ "third_party/WebKit" ] 98 include_dirs = [ "third_party/WebKit" ]
99 99
100 deps = [ 100 deps = [
101 "//base", 101 "//base",
102 "//base/third_party/dynamic_annotations", 102 "//base/third_party/dynamic_annotations",
103 "//cc", 103 "//cc",
104 "//cc/blink", 104 "//cc/blink",
105 "//cc/surfaces", 105 "//cc/surfaces",
106 "//components/clipboard/public/interfaces",
107 "//components/gpu/public/interfaces",
108 "//components/surfaces/public/interfaces",
106 "//components/webcrypto", 109 "//components/webcrypto",
107 "//gin", 110 "//gin",
108 "//media", 111 "//media",
109 "//media/blink", 112 "//media/blink",
110 "//media/mojo", 113 "//media/mojo",
111 "//mojo/application", 114 "//mojo/application",
112 "//mojo/cc", 115 "//mojo/cc",
113 "//mojo/common", 116 "//mojo/common",
114 "//mojo/converters/surfaces", 117 "//mojo/converters/surfaces",
115 "//mojo/services/network/public/cpp", 118 "//mojo/services/network/public/cpp",
116 "//mojo/services/network/public/interfaces", 119 "//mojo/services/network/public/interfaces",
117 "//net", 120 "//net",
118 "//skia", 121 "//skia",
119 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", 122 "//third_party/mojo/src/mojo/public/c/system:for_shared_library",
120 "//third_party/mojo/src/mojo/public/cpp/utility", 123 "//third_party/mojo/src/mojo/public/cpp/utility",
121 "//third_party/mojo/src/mojo/public/interfaces/application", 124 "//third_party/mojo/src/mojo/public/interfaces/application",
122 "//third_party/mojo_services/src/accessibility/public/interfaces", 125 "//third_party/mojo_services/src/accessibility/public/interfaces",
123 "//third_party/mojo_services/src/clipboard/public/interfaces",
124 "//third_party/mojo_services/src/content_handler/public/interfaces", 126 "//third_party/mojo_services/src/content_handler/public/interfaces",
125 "//third_party/mojo_services/src/gpu/public/interfaces", 127 "//ui/mojo/events:interfaces",
126 "//third_party/mojo_services/src/input_events/public/interfaces",
127 "//third_party/mojo_services/src/navigation/public/interfaces", 128 "//third_party/mojo_services/src/navigation/public/interfaces",
128 "//third_party/mojo_services/src/surfaces/public/interfaces",
129 "//ui/events", 129 "//ui/events",
130 "//ui/events:gesture_detection", 130 "//ui/events:gesture_detection",
131 "//ui/events/blink", 131 "//ui/events/blink",
132 "//ui/events/gestures/blink", 132 "//ui/events/gestures/blink",
133 "//ui/gfx/geometry", 133 "//ui/gfx/geometry",
134 "//ui/native_theme", 134 "//ui/native_theme",
135 "//ui/resources:ui_test_pak", 135 "//ui/resources:ui_test_pak",
136 "//url", 136 "//url",
137 ] 137 ]
138 138
139 public_deps = [ 139 public_deps = [
140 "//components/view_manager/public/cpp",
140 "//third_party/WebKit/public:blink", 141 "//third_party/WebKit/public:blink",
141 "//third_party/mojo/src/mojo/public/cpp/bindings", 142 "//third_party/mojo/src/mojo/public/cpp/bindings",
142 "//third_party/mojo_services/src/view_manager/public/cpp",
143 ":generate_blink_resource_map", 143 ":generate_blink_resource_map",
144 ] 144 ]
145 145
146 if (is_win) { 146 if (is_win) {
147 sources += [ "html_viewer_version.rc" ] 147 sources += [ "html_viewer_version.rc" ]
148 } 148 }
149 } 149 }
150 150
151 if (is_android) { 151 if (is_android) {
152 import("//build/config/android/rules.gni") 152 import("//build/config/android/rules.gni")
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 ] 233 ]
234 234
235 deps = [ 235 deps = [
236 ":lib", 236 ":lib",
237 ":html_viewer", 237 ":html_viewer",
238 "//mojo/application:test_support", 238 "//mojo/application:test_support",
239 "//net:test_support", 239 "//net:test_support",
240 "//testing/gtest", 240 "//testing/gtest",
241 ] 241 ]
242 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698