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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1413 "android/java/templates/NativeLibraries.template", | 1416 "android/java/templates/NativeLibraries.template", |
1414 ] | 1417 ] |
1415 source_prereqs = [ | 1418 source_prereqs = [ |
1416 "android/java/templates/native_libraries_array.h", | 1419 "android/java/templates/native_libraries_array.h", |
1417 ] | 1420 ] |
1418 | 1421 |
1419 package_name = "org/chromium/base/library_loader" | 1422 package_name = "org/chromium/base/library_loader" |
1420 include_path = "android/java/templates" | 1423 include_path = "android/java/templates" |
1421 } | 1424 } |
1422 } | 1425 } |
OLD | NEW |