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

Side by Side Diff: shell/BUILD.gn

Issue 1280613003: Allow native_viewport to create new native windows on demand on Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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("//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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 shared_library("mojo_shell") { 61 shared_library("mojo_shell") {
62 sources = [ 62 sources = [
63 "android/library_loader.cc", 63 "android/library_loader.cc",
64 "android/main.cc", 64 "android/main.cc",
65 "android/main.h", 65 "android/main.h",
66 ] 66 ]
67 67
68 deps = shell_common_deps + [ 68 deps = shell_common_deps + [
69 ":jni_headers", 69 ":jni_headers",
70 "//mojo/android:libsystem_java", 70 "//mojo/android:libsystem_java",
71 "//mojo/services/native_viewport/public/interfaces:interfaces",
71 "//mojo/services/window_manager/public/interfaces:interfaces", 72 "//mojo/services/window_manager/public/interfaces:interfaces",
72 "//services/native_viewport:lib", 73 "//services/native_viewport:lib",
73 "//shell/application_manager", 74 "//shell/application_manager",
74 "//ui/gl", 75 "//ui/gl",
75 ] 76 ]
76 77
77 data_deps = shell_common_data_deps 78 data_deps = shell_common_data_deps
78 } 79 }
79 } else { 80 } else {
80 executable("mojo_shell") { 81 executable("mojo_shell") {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 "android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java", 283 "android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java",
283 "android/apk/src/org/chromium/mojo/shell/MojoShellApplication.java", 284 "android/apk/src/org/chromium/mojo/shell/MojoShellApplication.java",
284 "android/apk/src/org/chromium/mojo/shell/NfcApplicationDelegate.java", 285 "android/apk/src/org/chromium/mojo/shell/NfcApplicationDelegate.java",
285 "android/apk/src/org/chromium/mojo/shell/NfcDbManager.java", 286 "android/apk/src/org/chromium/mojo/shell/NfcDbManager.java",
286 "android/apk/src/org/chromium/mojo/shell/NfcImpl.java", 287 "android/apk/src/org/chromium/mojo/shell/NfcImpl.java",
287 "android/apk/src/org/chromium/mojo/shell/NfcReceiverActivity.java", 288 "android/apk/src/org/chromium/mojo/shell/NfcReceiverActivity.java",
288 "android/apk/src/org/chromium/mojo/shell/NfcServiceFactoryBinder.java", 289 "android/apk/src/org/chromium/mojo/shell/NfcServiceFactoryBinder.java",
289 "android/apk/src/org/chromium/mojo/shell/SharingActivity.java", 290 "android/apk/src/org/chromium/mojo/shell/SharingActivity.java",
290 "android/apk/src/org/chromium/mojo/shell/SharingApplicationDelegate.java", 291 "android/apk/src/org/chromium/mojo/shell/SharingApplicationDelegate.java",
291 "android/apk/src/org/chromium/mojo/shell/ShellService.java", 292 "android/apk/src/org/chromium/mojo/shell/ShellService.java",
293 "android/apk/src/org/chromium/mojo/shell/ViewportActivity.java",
292 ] 294 ]
293 295
294 deps = [ 296 deps = [
295 ":resources", 297 ":resources",
296 "//base:base_java", 298 "//base:base_java",
297 "//mojo/android:system_java", 299 "//mojo/android:system_java",
298 "//mojo/public/interfaces/application:application_java", 300 "//mojo/public/interfaces/application:application_java",
299 "//mojo/public/java:application", 301 "//mojo/public/java:application",
300 "//mojo/public/java:bindings", 302 "//mojo/public/java:bindings",
301 "//mojo/public/java:system", 303 "//mojo/public/java:system",
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 "${root_out_dir}/libmojo_shell.so", 602 "${root_out_dir}/libmojo_shell.so",
601 ] 603 ]
602 } else { 604 } else {
603 sources += [ "${root_out_dir}/mojo_shell" ] 605 sources += [ "${root_out_dir}/mojo_shell" ]
604 } 606 }
605 607
606 outputs = [ 608 outputs = [
607 "${root_out_dir}/symbols/{{source_file_part}}", 609 "${root_out_dir}/symbols/{{source_file_part}}",
608 ] 610 ]
609 } 611 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698