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 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1296 "src/typing-asm.h", | 1296 "src/typing-asm.h", |
1297 "src/typing-reset.cc", | 1297 "src/typing-reset.cc", |
1298 "src/typing-reset.h", | 1298 "src/typing-reset.h", |
1299 "src/unicode-inl.h", | 1299 "src/unicode-inl.h", |
1300 "src/unicode.cc", | 1300 "src/unicode.cc", |
1301 "src/unicode.h", | 1301 "src/unicode.h", |
1302 "src/unicode-cache-inl.h", | 1302 "src/unicode-cache-inl.h", |
1303 "src/unicode-cache.h", | 1303 "src/unicode-cache.h", |
1304 "src/unicode-decoder.cc", | 1304 "src/unicode-decoder.cc", |
1305 "src/unicode-decoder.h", | 1305 "src/unicode-decoder.h", |
| 1306 "src/utils-inl.h", |
1306 "src/utils.cc", | 1307 "src/utils.cc", |
1307 "src/utils.h", | 1308 "src/utils.h", |
1308 "src/v8.cc", | 1309 "src/v8.cc", |
1309 "src/v8.h", | 1310 "src/v8.h", |
1310 "src/v8memory.h", | 1311 "src/v8memory.h", |
1311 "src/v8threads.cc", | 1312 "src/v8threads.cc", |
1312 "src/v8threads.h", | 1313 "src/v8threads.h", |
1313 "src/version.cc", | 1314 "src/version.cc", |
1314 "src/version.h", | 1315 "src/version.h", |
1315 "src/vm-state-inl.h", | 1316 "src/vm-state-inl.h", |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1901 if (!is_component_build) { | 1902 if (!is_component_build) { |
1902 sources += [ | 1903 sources += [ |
1903 "$target_gen_dir/d8-js.cc", | 1904 "$target_gen_dir/d8-js.cc", |
1904 ] | 1905 ] |
1905 } | 1906 } |
1906 if (v8_enable_i18n_support) { | 1907 if (v8_enable_i18n_support) { |
1907 deps += [ "//third_party/icu" ] | 1908 deps += [ "//third_party/icu" ] |
1908 } | 1909 } |
1909 } | 1910 } |
1910 } | 1911 } |
OLD | NEW |