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

Side by Side Diff: shell/BUILD.gn

Issue 1531403003: Delete the ViewManager and WindowManager services. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-3
Patch Set: rebase Created 4 years, 10 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 | « services/window_manager/window_manager_test_util.cc ('k') | shell/android/main.cc » ('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.gni") 6 import("//mojo/public/mojo.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//mojo/tools/embed/rules.gni") 9 import("//mojo/tools/embed/rules.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "android/library_loader.cc", 74 "android/library_loader.cc",
75 "android/main.cc", 75 "android/main.cc",
76 "android/main.h", 76 "android/main.h",
77 ] 77 ]
78 78
79 deps = shell_common_deps + [ 79 deps = shell_common_deps + [
80 ":jni_headers", 80 ":jni_headers",
81 "//gpu/config", 81 "//gpu/config",
82 "//mojo/android:libsystem_java", 82 "//mojo/android:libsystem_java",
83 "//mojo/common", 83 "//mojo/common",
84 "//mojo/services/window_manager/interfaces:interfaces",
85 "//services/native_viewport:lib", 84 "//services/native_viewport:lib",
86 "//shell/application_manager", 85 "//shell/application_manager",
87 "//ui/gl", 86 "//ui/gl",
88 ] 87 ]
89 88
90 data_deps = shell_common_data_deps 89 data_deps = shell_common_data_deps
91 } 90 }
92 } else { 91 } else {
93 executable("mojo_shell") { 92 executable("mojo_shell") {
94 sources = [ 93 sources = [
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 "//mojo/public/tools:copy_network_service", 424 "//mojo/public/tools:copy_network_service",
426 ] 425 ]
427 426
428 if (!is_debug) { 427 if (!is_debug) {
429 sources += [ 428 sources += [
430 "$root_out_dir/authenticating_url_loader_interceptor.mojo", 429 "$root_out_dir/authenticating_url_loader_interceptor.mojo",
431 "$root_out_dir/dart_content_handler.mojo", 430 "$root_out_dir/dart_content_handler.mojo",
432 "$root_out_dir/device_info.mojo", 431 "$root_out_dir/device_info.mojo",
433 "$root_out_dir/icu_data.mojo", 432 "$root_out_dir/icu_data.mojo",
434 "$root_out_dir/java_handler.mojo", 433 "$root_out_dir/java_handler.mojo",
435 "$root_out_dir/kiosk_wm.mojo",
436 "$root_out_dir/surfaces_service.mojo", 434 "$root_out_dir/surfaces_service.mojo",
437 "$root_out_dir/tracing.mojo", 435 "$root_out_dir/tracing.mojo",
438 "$root_out_dir/view_manager.mojo",
439 ] 436 ]
440 437
441 deps += [ 438 deps += [
442 "//services/authenticating_url_loader_interceptor", 439 "//services/authenticating_url_loader_interceptor",
443 "//services/dart:dart_content_handler", 440 "//services/dart:dart_content_handler",
444 "//services/device_info", 441 "//services/device_info",
445 "//services/icu_data", 442 "//services/icu_data",
446 "//services/java_handler", 443 "//services/java_handler",
447 "//services/kiosk_wm",
448 "//services/surfaces", 444 "//services/surfaces",
449 "//services/tracing", 445 "//services/tracing",
450 "//services/view_manager",
451 ] 446 ]
452 } 447 }
453 } 448 }
454 449
455 copy_ex("copy_mojo_shell_test_assets") { 450 copy_ex("copy_mojo_shell_test_assets") {
456 clear_dir = true 451 clear_dir = true
457 dest = mojo_shell_test_assets_dir 452 dest = mojo_shell_test_assets_dir
458 sources = [ 453 sources = [
459 "$root_out_dir/test_app.mojo", 454 "$root_out_dir/test_app.mojo",
460 "$root_out_dir/test_request_tracker_app.mojo", 455 "$root_out_dir/test_request_tracker_app.mojo",
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 "${root_out_dir}/libmojo_shell.so", 715 "${root_out_dir}/libmojo_shell.so",
721 ] 716 ]
722 } else { 717 } else {
723 sources += [ "${root_out_dir}/mojo_shell" ] 718 sources += [ "${root_out_dir}/mojo_shell" ]
724 } 719 }
725 720
726 outputs = [ 721 outputs = [
727 "${root_out_dir}/symbols/{{source_file_part}}", 722 "${root_out_dir}/symbols/{{source_file_part}}",
728 ] 723 ]
729 } 724 }
OLDNEW
« no previous file with comments | « services/window_manager/window_manager_test_util.cc ('k') | shell/android/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698