OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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("//build/config/android/rules.gni") | |
6 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
7 | 6 |
| 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") |
| 9 } |
| 10 |
8 component("base") { | 11 component("base") { |
9 sources = [ | 12 sources = [ |
10 "third_party/dmg_fp/dmg_fp.h", | 13 "third_party/dmg_fp/dmg_fp.h", |
11 "third_party/dmg_fp/g_fmt.cc", | 14 "third_party/dmg_fp/g_fmt.cc", |
12 "third_party/dmg_fp/dtoa_wrapper.cc", | 15 "third_party/dmg_fp/dtoa_wrapper.cc", |
13 "third_party/icu/icu_utf.cc", | 16 "third_party/icu/icu_utf.cc", |
14 "third_party/icu/icu_utf.h", | 17 "third_party/icu/icu_utf.h", |
15 "third_party/superfasthash/superfasthash.c", | 18 "third_party/superfasthash/superfasthash.c", |
16 "allocator/allocator_extension.cc", | 19 "allocator/allocator_extension.cc", |
17 "allocator/allocator_extension.h", | 20 "allocator/allocator_extension.h", |
(...skipping 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1415 "android/java/templates/NativeLibraries.template", | 1418 "android/java/templates/NativeLibraries.template", |
1416 ] | 1419 ] |
1417 inputs = [ | 1420 inputs = [ |
1418 "android/java/templates/native_libraries_array.h", | 1421 "android/java/templates/native_libraries_array.h", |
1419 ] | 1422 ] |
1420 | 1423 |
1421 package_name = "org/chromium/base/library_loader" | 1424 package_name = "org/chromium/base/library_loader" |
1422 include_path = "android/java/templates" | 1425 include_path = "android/java/templates" |
1423 } | 1426 } |
1424 } | 1427 } |
OLD | NEW |