| 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 # core_services should be thought of as a bundle of many of the services which | 5 # core_services should be thought of as a bundle of many of the services which |
| 6 # we ship with. | 6 # we ship with. |
| 7 | 7 |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 9 import("//mojo/public/mojo_application.gni") |
| 10 import("//testing/test.gni") | |
| 11 | 10 |
| 12 if (is_android) { | 11 if (is_android) { |
| 13 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
| 14 | 13 |
| 15 java_library_path = "$target_out_dir/java_library.dex.jar" | 14 java_library_path = "$target_out_dir/java_library.dex.jar" |
| 16 | 15 |
| 17 mojo_android_application("core_services") { | 16 mojo_android_application("core_services") { |
| 18 input_so = "$root_out_dir/lib.stripped/libcore_services.so" | 17 input_so = "$root_out_dir/lib.stripped/libcore_services.so" |
| 19 input_dex_jar = java_library_path | 18 input_dex_jar = java_library_path |
| 20 deps = [ | 19 deps = [ |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//mojo/services/tracing:lib", | 74 "//mojo/services/tracing:lib", |
| 76 ] | 75 ] |
| 77 | 76 |
| 78 if (use_aura) { | 77 if (use_aura) { |
| 79 deps += [ | 78 deps += [ |
| 80 "//components/view_manager/public/cpp", | 79 "//components/view_manager/public/cpp", |
| 81 "//mandoline/ui/omnibox:lib", | 80 "//mandoline/ui/omnibox:lib", |
| 82 ] | 81 ] |
| 83 } | 82 } |
| 84 } | 83 } |
| OLD | NEW |