| 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 assert(is_android) | 5 assert(is_android) |
| 6 | 6 |
| 7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 | 9 |
| 10 generate_jni("jni_headers") { | 10 generate_jni("jni_headers") { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "ui/internals.cc", | 48 "ui/internals.cc", |
| 49 "ui/internals.h", | 49 "ui/internals.h", |
| 50 "ui_delegate.cc", | 50 "ui_delegate.cc", |
| 51 "ui_delegate.h", | 51 "ui_delegate.h", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 "//base", | 55 "//base", |
| 56 "//base:i18n", | 56 "//base:i18n", |
| 57 "//build/config/sanitizers:deps", | 57 "//build/config/sanitizers:deps", |
| 58 "//dart/runtime/bin:libdart_withcore", | 58 "//dart/runtime:libdart", |
| 59 "//mojo/android:libsystem_java", | 59 "//mojo/android:libsystem_java", |
| 60 "//mojo/common", | 60 "//mojo/common", |
| 61 "//mojo/edk/system", | 61 "//mojo/edk/system", |
| 62 "//mojo/public/cpp/application", | 62 "//mojo/public/cpp/application", |
| 63 "//mojo/public/interfaces/application", | 63 "//mojo/public/interfaces/application", |
| 64 "//mojo/services/navigation/public/interfaces", | 64 "//mojo/services/navigation/public/interfaces", |
| 65 "//mojo/services/network/public/interfaces", | 65 "//mojo/services/network/public/interfaces", |
| 66 "//skia", | 66 "//skia", |
| 67 "//sky/engine", | 67 "//sky/engine", |
| 68 "//sky/engine/tonic", | 68 "//sky/engine/tonic", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 copy_ex("assets") { | 103 copy_ex("assets") { |
| 104 clear_dir = true | 104 clear_dir = true |
| 105 dest = "$root_build_dir/sky_shell/assets" | 105 dest = "$root_build_dir/sky_shell/assets" |
| 106 sources = [ | 106 sources = [ |
| 107 "$root_build_dir/icudtl.dat", | 107 "$root_build_dir/icudtl.dat", |
| 108 ] | 108 ] |
| 109 deps = [ | 109 deps = [ |
| 110 "//third_party/icu", | 110 "//third_party/icu", |
| 111 ] | 111 ] |
| 112 } | 112 } |
| OLD | NEW |