Chromium Code Reviews| 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 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1059 "src/heap/scavenger.cc", | 1059 "src/heap/scavenger.cc", |
| 1060 "src/heap/scavenger.h", | 1060 "src/heap/scavenger.h", |
| 1061 "src/heap/slots-buffer.cc", | 1061 "src/heap/slots-buffer.cc", |
| 1062 "src/heap/slots-buffer.h", | 1062 "src/heap/slots-buffer.h", |
| 1063 "src/heap/spaces-inl.h", | 1063 "src/heap/spaces-inl.h", |
| 1064 "src/heap/spaces.cc", | 1064 "src/heap/spaces.cc", |
| 1065 "src/heap/spaces.h", | 1065 "src/heap/spaces.h", |
| 1066 "src/heap/store-buffer-inl.h", | 1066 "src/heap/store-buffer-inl.h", |
| 1067 "src/heap/store-buffer.cc", | 1067 "src/heap/store-buffer.cc", |
| 1068 "src/heap/store-buffer.h", | 1068 "src/heap/store-buffer.h", |
| 1069 "src/heap/slot-set.h", | |
|
Hannes Payer (out of office)
2016/01/20 19:43:00
alphabetic order
ulan
2016/01/28 19:07:21
Done.
| |
| 1069 "src/i18n.cc", | 1070 "src/i18n.cc", |
| 1070 "src/i18n.h", | 1071 "src/i18n.h", |
| 1071 "src/icu_util.cc", | 1072 "src/icu_util.cc", |
| 1072 "src/icu_util.h", | 1073 "src/icu_util.h", |
| 1073 "src/ic/access-compiler.cc", | 1074 "src/ic/access-compiler.cc", |
| 1074 "src/ic/access-compiler.h", | 1075 "src/ic/access-compiler.h", |
| 1075 "src/ic/call-optimization.cc", | 1076 "src/ic/call-optimization.cc", |
| 1076 "src/ic/call-optimization.h", | 1077 "src/ic/call-optimization.h", |
| 1077 "src/ic/handler-compiler.cc", | 1078 "src/ic/handler-compiler.cc", |
| 1078 "src/ic/handler-compiler.h", | 1079 "src/ic/handler-compiler.h", |
| (...skipping 820 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 |