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

Side by Side Diff: shell/BUILD.gn

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