| OLD | NEW | 
|---|
| 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/android/config.gni") | 5 import("//build/config/android/config.gni") | 
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") | 
| 7 | 7 | 
| 8 android_aidl("common_aidl") { | 8 android_aidl("common_aidl") { | 
| 9   interface_file = "java/src/org/chromium/content/common/common.aidl" | 9   interface_file = "java/src/org/chromium/content/common/common.aidl" | 
| 10   import_include = [ "java/src" ] | 10   import_include = [ "java/src" ] | 
| 11   sources = [ | 11   sources = [ | 
| 12     "java/src/org/chromium/content/common/IChildProcessService.aidl", |  | 
| 13     "java/src/org/chromium/content/common/IGpuProcessCallback.aidl", | 12     "java/src/org/chromium/content/common/IGpuProcessCallback.aidl", | 
| 14   ] | 13   ] | 
| 15 } | 14 } | 
| 16 | 15 | 
| 17 android_aidl("is_ready_to_pay_service_aidl") { | 16 android_aidl("is_ready_to_pay_service_aidl") { | 
| 18   interface_file = "java/src/org/chromium/payments_common.aidl" | 17   interface_file = "java/src/org/chromium/payments_common.aidl" | 
| 19   sources = [ | 18   sources = [ | 
| 20     "java/src/org/chromium/IsReadyToPayService.aidl", | 19     "java/src/org/chromium/IsReadyToPayService.aidl", | 
| 21     "java/src/org/chromium/IsReadyToPayServiceCallback.aidl", | 20     "java/src/org/chromium/IsReadyToPayServiceCallback.aidl", | 
| 22   ] | 21   ] | 
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 478     "junit/src/org/chromium/content/browser/installedapp/InstalledAppProviderTes
     t.java", | 477     "junit/src/org/chromium/content/browser/installedapp/InstalledAppProviderTes
     t.java", | 
| 479   ] | 478   ] | 
| 480   deps = [ | 479   deps = [ | 
| 481     ":content_java", | 480     ":content_java", | 
| 482     "//base:base_java", | 481     "//base:base_java", | 
| 483     "//base:base_java_test_support", | 482     "//base:base_java_test_support", | 
| 484     "//mojo/public/java:bindings_java", | 483     "//mojo/public/java:bindings_java", | 
| 485     "//third_party/WebKit/public:android_mojo_bindings_java", | 484     "//third_party/WebKit/public:android_mojo_bindings_java", | 
| 486   ] | 485   ] | 
| 487 } | 486 } | 
| OLD | NEW | 
|---|