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

Side by Side Diff: shell/BUILD.gn

Issue 1530333005: Delete the ViewManager and WindowManager services. (Closed) Base URL: git@github.com:domokit/mojo.git@cl-2c
Patch Set: rebase Created 5 years 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 "//mojo/public/tools:copy_network_service", 421 "//mojo/public/tools:copy_network_service",
423 ] 422 ]
424 423
425 if (!is_debug) { 424 if (!is_debug) {
426 sources += [ 425 sources += [
427 "$root_out_dir/authenticating_url_loader_interceptor.mojo", 426 "$root_out_dir/authenticating_url_loader_interceptor.mojo",
428 "$root_out_dir/dart_content_handler.mojo", 427 "$root_out_dir/dart_content_handler.mojo",
429 "$root_out_dir/device_info.mojo", 428 "$root_out_dir/device_info.mojo",
430 "$root_out_dir/icu_data.mojo", 429 "$root_out_dir/icu_data.mojo",
431 "$root_out_dir/java_handler.mojo", 430 "$root_out_dir/java_handler.mojo",
432 "$root_out_dir/kiosk_wm.mojo",
433 "$root_out_dir/surfaces_service.mojo", 431 "$root_out_dir/surfaces_service.mojo",
434 "$root_out_dir/tracing.mojo", 432 "$root_out_dir/tracing.mojo",
435 "$root_out_dir/view_manager.mojo",
436 ] 433 ]
437 434
438 deps += [ 435 deps += [
439 "//services/authenticating_url_loader_interceptor", 436 "//services/authenticating_url_loader_interceptor",
440 "//services/java_handler", 437 "//services/java_handler",
441 "//services/dart:dart_content_handler", 438 "//services/dart:dart_content_handler",
442 "//services/device_info", 439 "//services/device_info",
443 "//services/icu_data", 440 "//services/icu_data",
444 "//services/kiosk_wm",
445 "//services/surfaces", 441 "//services/surfaces",
446 "//services/tracing", 442 "//services/tracing",
447 "//services/view_manager",
448 ] 443 ]
449 } 444 }
450 } 445 }
451 446
452 copy_ex("copy_mojo_shell_test_assets") { 447 copy_ex("copy_mojo_shell_test_assets") {
453 clear_dir = true 448 clear_dir = true
454 dest = mojo_shell_test_assets_dir 449 dest = mojo_shell_test_assets_dir
455 sources = [ 450 sources = [
456 "$root_out_dir/test_app.mojo", 451 "$root_out_dir/test_app.mojo",
457 "$root_out_dir/test_request_tracker_app.mojo", 452 "$root_out_dir/test_request_tracker_app.mojo",
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 "${root_out_dir}/libmojo_shell.so", 712 "${root_out_dir}/libmojo_shell.so",
718 ] 713 ]
719 } else { 714 } else {
720 sources += [ "${root_out_dir}/mojo_shell" ] 715 sources += [ "${root_out_dir}/mojo_shell" ]
721 } 716 }
722 717
723 outputs = [ 718 outputs = [
724 "${root_out_dir}/symbols/{{source_file_part}}", 719 "${root_out_dir}/symbols/{{source_file_part}}",
725 ] 720 ]
726 } 721 }
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