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 16 matching lines...) Expand all Loading... |
27 ] | 27 ] |
28 | 28 |
29 deps = [ | 29 deps = [ |
30 ":jni_headers", | 30 ":jni_headers", |
31 ":lib", | 31 ":lib", |
32 "//base", | 32 "//base", |
33 "//build/config/sanitizers:deps", | 33 "//build/config/sanitizers:deps", |
34 "//components/resource_provider/public/interfaces", | 34 "//components/resource_provider/public/interfaces", |
35 "//mojo/environment:chromium", | 35 "//mojo/environment:chromium", |
36 "//mojo/platform_handle:for_shared_library", | 36 "//mojo/platform_handle:for_shared_library", |
37 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 37 "//mojo/public/c/system:for_shared_library", |
38 "//url", | 38 "//url", |
39 ] | 39 ] |
40 } | 40 } |
41 | 41 |
42 generate_jni("jni_headers") { | 42 generate_jni("jni_headers") { |
43 sources = [ | 43 sources = [ |
44 "android/java/org/chromium/resource_provider/Main.java", | 44 "android/java/org/chromium/resource_provider/Main.java", |
45 ] | 45 ] |
46 jni_package = "components/resource_provider" | 46 jni_package = "components/resource_provider" |
47 } | 47 } |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 "//base/test:test_config", | 132 "//base/test:test_config", |
133 "//components/resource_provider/public/cpp", | 133 "//components/resource_provider/public/cpp", |
134 "//components/resource_provider/public/interfaces", | 134 "//components/resource_provider/public/interfaces", |
135 "//mojo/application/public/cpp:test_support", | 135 "//mojo/application/public/cpp:test_support", |
136 ] | 136 ] |
137 | 137 |
138 data_deps = [ | 138 data_deps = [ |
139 ":resource_provider", | 139 ":resource_provider", |
140 ] | 140 ] |
141 } | 141 } |
OLD | NEW |