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

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

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 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 | « components/font_service/public/cpp/font_loader.cc ('k') | components/html_viewer/DEPS » ('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_overrides/v8.gni") 5 import("//build_overrides/v8.gni")
6 import("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "//components/web_view:switches", 164 "//components/web_view:switches",
165 "//components/web_view/public/interfaces", 165 "//components/web_view/public/interfaces",
166 "//components/webcrypto", 166 "//components/webcrypto",
167 "//gin", 167 "//gin",
168 "//gpu/blink:blink", 168 "//gpu/blink:blink",
169 "//gpu/command_buffer/common:gles2_utils", 169 "//gpu/command_buffer/common:gles2_utils",
170 "//media", 170 "//media",
171 "//media:shared_memory_support", 171 "//media:shared_memory_support",
172 "//media/blink", 172 "//media/blink",
173 "//media/mojo", 173 "//media/mojo",
174 "//mojo/application/public/cpp",
175 "//mojo/application/public/interfaces",
176 "//mojo/common", 174 "//mojo/common",
177 "//mojo/converters/blink", 175 "//mojo/converters/blink",
178 "//mojo/converters/surfaces", 176 "//mojo/converters/surfaces",
179 "//mojo/gles2:headers", 177 "//mojo/gles2:headers",
180 "//mojo/gpu:mojo_gles2_implementation", 178 "//mojo/gpu:mojo_gles2_implementation",
181 "//mojo/logging", 179 "//mojo/logging",
182 "//mojo/message_pump", 180 "//mojo/message_pump",
183 "//mojo/platform_handle", 181 "//mojo/platform_handle",
184 "//mojo/public/cpp/environment:environment", 182 "//mojo/public/cpp/environment:environment",
185 "//mojo/services/accessibility/public/interfaces", 183 "//mojo/services/accessibility/public/interfaces",
186 "//mojo/services/network/public/cpp", 184 "//mojo/services/network/public/cpp",
187 "//mojo/services/network/public/interfaces", 185 "//mojo/services/network/public/interfaces",
188 "//mojo/services/tracing/public/cpp", 186 "//mojo/services/tracing/public/cpp",
189 "//mojo/services/tracing/public/interfaces", 187 "//mojo/services/tracing/public/interfaces",
188 "//mojo/shell/public/cpp",
189 "//mojo/shell/public/interfaces",
190 "//net", 190 "//net",
191 "//skia", 191 "//skia",
192 "//third_party/WebKit/public:image_resources", 192 "//third_party/WebKit/public:image_resources",
193 "//third_party/WebKit/public:resources", 193 "//third_party/WebKit/public:resources",
194 "//ui/base:base", 194 "//ui/base:base",
195 "//ui/events", 195 "//ui/events",
196 "//ui/events:gesture_detection", 196 "//ui/events:gesture_detection",
197 "//ui/events/blink", 197 "//ui/events/blink",
198 "//ui/events/gestures/blink", 198 "//ui/events/gestures/blink",
199 "//ui/gfx", 199 "//ui/gfx",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 } 231 }
232 232
233 mojo_native_application("html_viewer") { 233 mojo_native_application("html_viewer") {
234 sources = [ 234 sources = [
235 "html_viewer_main.cc", 235 "html_viewer_main.cc",
236 ] 236 ]
237 deps = [ 237 deps = [
238 ":lib", 238 ":lib",
239 ":pak", 239 ":pak",
240 "//base", 240 "//base",
241 "//mojo/application/public/cpp:sources", 241 "//mojo/shell/public/cpp:sources",
242 ] 242 ]
243 resources = [ "$root_out_dir/html_viewer.pak" ] 243 resources = [ "$root_out_dir/html_viewer.pak" ]
244 244
245 if (v8_use_external_startup_data) { 245 if (v8_use_external_startup_data) {
246 resources += [ 246 resources += [
247 "$root_out_dir/natives_blob.bin", 247 "$root_out_dir/natives_blob.bin",
248 "$root_out_dir/snapshot_blob.bin", 248 "$root_out_dir/snapshot_blob.bin",
249 ] 249 ]
250 deps += [ "//gin" ] 250 deps += [ "//gin" ]
251 } 251 }
(...skipping 11 matching lines...) Expand all
263 "layout_test_html_viewer_main.cc", 263 "layout_test_html_viewer_main.cc",
264 "web_test_delegate_impl.cc", 264 "web_test_delegate_impl.cc",
265 "web_test_delegate_impl.h", 265 "web_test_delegate_impl.h",
266 ] 266 ]
267 deps = [ 267 deps = [
268 ":lib", 268 ":lib",
269 ":pak", 269 ":pak",
270 "//cc", 270 "//cc",
271 "//components/test_runner", 271 "//components/test_runner",
272 "//components/web_view/test_runner/public/interfaces", 272 "//components/web_view/test_runner/public/interfaces",
273 "//mojo/application/public/cpp:sources",
274 "//mojo/public/c/system:for_shared_library", 273 "//mojo/public/c/system:for_shared_library",
274 "//mojo/shell/public/cpp:sources",
275 "//third_party/WebKit/public:blink", 275 "//third_party/WebKit/public:blink",
276 "//third_party/WebKit/public:test_support", 276 "//third_party/WebKit/public:test_support",
277 "//ui/base", 277 "//ui/base",
278 "//url", 278 "//url",
279 ] 279 ]
280 resources = [ "$root_out_dir/html_viewer.pak" ] 280 resources = [ "$root_out_dir/html_viewer.pak" ]
281 281
282 if (v8_use_external_startup_data) { 282 if (v8_use_external_startup_data) {
283 resources += [ 283 resources += [
284 "$root_out_dir/natives_blob.bin", 284 "$root_out_dir/natives_blob.bin",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 345
346 deps = [ 346 deps = [
347 "//base", 347 "//base",
348 "//components/html_viewer/public/interfaces", 348 "//components/html_viewer/public/interfaces",
349 "//components/mus/public/cpp", 349 "//components/mus/public/cpp",
350 "//components/mus/public/cpp/tests:test_support", 350 "//components/mus/public/cpp/tests:test_support",
351 "//components/scheduler", 351 "//components/scheduler",
352 "//components/web_view:lib", 352 "//components/web_view:lib",
353 "//components/web_view:test_support", 353 "//components/web_view:test_support",
354 "//components/web_view/public/interfaces", 354 "//components/web_view/public/interfaces",
355 "//mojo/application/public/cpp:sources",
356 "//mojo/application/public/cpp:test_support",
357 "//mojo/converters/network", 355 "//mojo/converters/network",
358 "//mojo/public/c/system:for_shared_library", 356 "//mojo/public/c/system:for_shared_library",
359 "//mojo/services/accessibility/public/interfaces", 357 "//mojo/services/accessibility/public/interfaces",
358 "//mojo/shell/public/cpp:sources",
359 "//mojo/shell/public/cpp:test_support",
360 "//net:test_support", 360 "//net:test_support",
361 "//testing/gtest", 361 "//testing/gtest",
362 ] 362 ]
363 363
364 data_deps = [ 364 data_deps = [
365 ":html_viewer", 365 ":html_viewer",
366 ] 366 ]
367 367
368 if (is_linux && !is_android) { 368 if (is_linux && !is_android) {
369 data_deps += [ "//components/font_service" ] 369 data_deps += [ "//components/font_service" ]
370 } 370 }
371 } 371 }
OLDNEW
« no previous file with comments | « components/font_service/public/cpp/font_loader.cc ('k') | components/html_viewer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698