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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "ui/engine.cc", | 43 "ui/engine.cc", |
44 "ui/engine.h", | 44 "ui/engine.h", |
45 "ui/input_event_converter.cc", | 45 "ui/input_event_converter.cc", |
46 "ui/input_event_converter.h", | 46 "ui/input_event_converter.h", |
47 "ui/internals.cc", | 47 "ui/internals.cc", |
48 "ui/internals.h", | 48 "ui/internals.h", |
49 "ui_delegate.cc", | 49 "ui_delegate.cc", |
50 "ui_delegate.h", | 50 "ui_delegate.h", |
51 ] | 51 ] |
52 | 52 |
| 53 include_dirs = [ |
| 54 # Needed for 'dart:io' event handler (used in sky_main.cc). |
| 55 rebase_path("//dart/runtime"), |
| 56 ] |
| 57 |
53 deps = [ | 58 deps = [ |
54 "//base", | 59 "//base", |
55 "//base:i18n", | 60 "//base:i18n", |
56 "//build/config/sanitizers:deps", | 61 "//build/config/sanitizers:deps", |
57 "//dart/runtime/bin:libdart_withcore", | 62 "//dart/runtime/bin:libdart_withcore", |
58 "//mojo/android:libsystem_java", | 63 "//mojo/android:libsystem_java", |
59 "//mojo/common", | 64 "//mojo/common", |
60 "//mojo/edk/system", | 65 "//mojo/edk/system", |
61 "//mojo/public/cpp/application", | 66 "//mojo/public/cpp/application", |
62 "//mojo/public/interfaces/application", | 67 "//mojo/public/interfaces/application", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 copy_ex("assets") { | 107 copy_ex("assets") { |
103 clear_dir = true | 108 clear_dir = true |
104 dest = "$root_build_dir/sky_shell/assets" | 109 dest = "$root_build_dir/sky_shell/assets" |
105 sources = [ | 110 sources = [ |
106 "$root_build_dir/icudtl.dat", | 111 "$root_build_dir/icudtl.dat", |
107 ] | 112 ] |
108 deps = [ | 113 deps = [ |
109 "//third_party/icu", | 114 "//third_party/icu", |
110 ] | 115 ] |
111 } | 116 } |
OLD | NEW |