OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1294 "src/typing-asm.h", | 1294 "src/typing-asm.h", |
1295 "src/typing-reset.cc", | 1295 "src/typing-reset.cc", |
1296 "src/typing-reset.h", | 1296 "src/typing-reset.h", |
1297 "src/unicode-inl.h", | 1297 "src/unicode-inl.h", |
1298 "src/unicode.cc", | 1298 "src/unicode.cc", |
1299 "src/unicode.h", | 1299 "src/unicode.h", |
1300 "src/unicode-cache-inl.h", | 1300 "src/unicode-cache-inl.h", |
1301 "src/unicode-cache.h", | 1301 "src/unicode-cache.h", |
1302 "src/unicode-decoder.cc", | 1302 "src/unicode-decoder.cc", |
1303 "src/unicode-decoder.h", | 1303 "src/unicode-decoder.h", |
| 1304 "src/utils-inl.h", |
1304 "src/utils.cc", | 1305 "src/utils.cc", |
1305 "src/utils.h", | 1306 "src/utils.h", |
1306 "src/v8.cc", | 1307 "src/v8.cc", |
1307 "src/v8.h", | 1308 "src/v8.h", |
1308 "src/v8memory.h", | 1309 "src/v8memory.h", |
1309 "src/v8threads.cc", | 1310 "src/v8threads.cc", |
1310 "src/v8threads.h", | 1311 "src/v8threads.h", |
1311 "src/version.cc", | 1312 "src/version.cc", |
1312 "src/version.h", | 1313 "src/version.h", |
1313 "src/vm-state-inl.h", | 1314 "src/vm-state-inl.h", |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1899 if (!is_component_build) { | 1900 if (!is_component_build) { |
1900 sources += [ | 1901 sources += [ |
1901 "$target_gen_dir/d8-js.cc", | 1902 "$target_gen_dir/d8-js.cc", |
1902 ] | 1903 ] |
1903 } | 1904 } |
1904 if (v8_enable_i18n_support) { | 1905 if (v8_enable_i18n_support) { |
1905 deps += [ "//third_party/icu" ] | 1906 deps += [ "//third_party/icu" ] |
1906 } | 1907 } |
1907 } | 1908 } |
1908 } | 1909 } |
OLD | NEW |