| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 ":jni_headers", | 33 ":jni_headers", |
| 34 ":lib", | 34 ":lib", |
| 35 "//base", | 35 "//base", |
| 36 "//build/config/sanitizers:deps", | 36 "//build/config/sanitizers:deps", |
| 37 "//components/resource_provider/public/interfaces", | 37 "//components/resource_provider/public/interfaces", |
| 38 "//mojo/environment:chromium", | 38 "//mojo/environment:chromium", |
| 39 "//mojo/platform_handle:for_shared_library", | 39 "//mojo/platform_handle:for_shared_library", |
| 40 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 40 "//mojo/public/c/system:for_shared_library", |
| 41 "//url", | 41 "//url", |
| 42 ] | 42 ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 generate_jni("jni_headers") { | 45 generate_jni("jni_headers") { |
| 46 sources = [ | 46 sources = [ |
| 47 "android/java/org/chromium/resource_provider/Main.java", | 47 "android/java/org/chromium/resource_provider/Main.java", |
| 48 ] | 48 ] |
| 49 jni_package = "components/resource_provider" | 49 jni_package = "components/resource_provider" |
| 50 } | 50 } |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "//base/test:test_config", | 138 "//base/test:test_config", |
| 139 "//components/resource_provider/public/cpp", | 139 "//components/resource_provider/public/cpp", |
| 140 "//components/resource_provider/public/interfaces", | 140 "//components/resource_provider/public/interfaces", |
| 141 "//mojo/application/public/cpp:test_support", | 141 "//mojo/application/public/cpp:test_support", |
| 142 ] | 142 ] |
| 143 | 143 |
| 144 data_deps = [ | 144 data_deps = [ |
| 145 ":resource_provider", | 145 ":resource_provider", |
| 146 ] | 146 ] |
| 147 } | 147 } |
| OLD | NEW |