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

Side by Side Diff: shell/BUILD.gn

Issue 1098243003: java libraries: Fix warnings in eclipse. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java", 291 "android/apk/src/org/chromium/mojo/shell/IntentReceiverRegistry.java",
292 "android/apk/src/org/chromium/mojo/shell/Keyboard.java", 292 "android/apk/src/org/chromium/mojo/shell/Keyboard.java",
293 "android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java", 293 "android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java",
294 "android/apk/src/org/chromium/mojo/shell/MojoShellApplication.java", 294 "android/apk/src/org/chromium/mojo/shell/MojoShellApplication.java",
295 "android/apk/src/org/chromium/mojo/shell/ShellMain.java", 295 "android/apk/src/org/chromium/mojo/shell/ShellMain.java",
296 ] 296 ]
297 297
298 deps = [ 298 deps = [
299 "//base:base_java", 299 "//base:base_java",
300 "//mojo/android:system_java", 300 "//mojo/android:system_java",
301 "//mojo/public/java:bindings",
301 "//mojo/public/java:system", 302 "//mojo/public/java:system",
302 "//mojo/services/keyboard/public/interfaces:interfaces_java", 303 "//mojo/services/keyboard/public/interfaces:interfaces_java",
303 "//services/keyboard", 304 "//services/keyboard",
304 ] 305 ]
305 } 306 }
306 307
307 android_resources("resources") { 308 android_resources("resources") {
308 resource_dirs = [ "android/apk/res" ] 309 resource_dirs = [ "android/apk/res" ]
309 custom_package = "org.chromium.mojo.shell" 310 custom_package = "org.chromium.mojo.shell"
310 } 311 }
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 "//mojo/public/cpp/system:system", 455 "//mojo/public/cpp/system:system",
455 "//mojo/services/http_server/public/cpp", 456 "//mojo/services/http_server/public/cpp",
456 "//mojo/services/http_server/public/interfaces", 457 "//mojo/services/http_server/public/interfaces",
457 "//mojo/services/network/public/interfaces", 458 "//mojo/services/network/public/interfaces",
458 "//shell/test:bindings", 459 "//shell/test:bindings",
459 ":embed_pingable", 460 ":embed_pingable",
460 ] 461 ]
461 462
462 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] 463 data_deps = [ "//services/http_server:http_server($default_toolchain)" ]
463 } 464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698