Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: BUILD.gn

Issue 1208933006: Atomics Futex API (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: TODO about busy-waiting Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/futex-emulation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 "src/flag-definitions.h", 869 "src/flag-definitions.h",
870 "src/flags.cc", 870 "src/flags.cc",
871 "src/flags.h", 871 "src/flags.h",
872 "src/frames-inl.h", 872 "src/frames-inl.h",
873 "src/frames.cc", 873 "src/frames.cc",
874 "src/frames.h", 874 "src/frames.h",
875 "src/full-codegen.cc", 875 "src/full-codegen.cc",
876 "src/full-codegen.h", 876 "src/full-codegen.h",
877 "src/func-name-inferrer.cc", 877 "src/func-name-inferrer.cc",
878 "src/func-name-inferrer.h", 878 "src/func-name-inferrer.h",
879 "src/futex-emulation.cc",
880 "src/futex-emulation.h",
879 "src/gdb-jit.cc", 881 "src/gdb-jit.cc",
880 "src/gdb-jit.h", 882 "src/gdb-jit.h",
881 "src/global-handles.cc", 883 "src/global-handles.cc",
882 "src/global-handles.h", 884 "src/global-handles.h",
883 "src/globals.h", 885 "src/globals.h",
884 "src/handles-inl.h", 886 "src/handles-inl.h",
885 "src/handles.cc", 887 "src/handles.cc",
886 "src/handles.h", 888 "src/handles.h",
887 "src/hashmap.h", 889 "src/hashmap.h",
888 "src/heap-profiler.cc", 890 "src/heap-profiler.cc",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 "src/runtime-profiler.h", 1070 "src/runtime-profiler.h",
1069 "src/runtime/runtime-array.cc", 1071 "src/runtime/runtime-array.cc",
1070 "src/runtime/runtime-atomics.cc", 1072 "src/runtime/runtime-atomics.cc",
1071 "src/runtime/runtime-classes.cc", 1073 "src/runtime/runtime-classes.cc",
1072 "src/runtime/runtime-collections.cc", 1074 "src/runtime/runtime-collections.cc",
1073 "src/runtime/runtime-compiler.cc", 1075 "src/runtime/runtime-compiler.cc",
1074 "src/runtime/runtime-date.cc", 1076 "src/runtime/runtime-date.cc",
1075 "src/runtime/runtime-debug.cc", 1077 "src/runtime/runtime-debug.cc",
1076 "src/runtime/runtime-forin.cc", 1078 "src/runtime/runtime-forin.cc",
1077 "src/runtime/runtime-function.cc", 1079 "src/runtime/runtime-function.cc",
1080 "src/runtime/runtime-futex.cc",
1078 "src/runtime/runtime-generator.cc", 1081 "src/runtime/runtime-generator.cc",
1079 "src/runtime/runtime-i18n.cc", 1082 "src/runtime/runtime-i18n.cc",
1080 "src/runtime/runtime-internal.cc", 1083 "src/runtime/runtime-internal.cc",
1081 "src/runtime/runtime-json.cc", 1084 "src/runtime/runtime-json.cc",
1082 "src/runtime/runtime-literals.cc", 1085 "src/runtime/runtime-literals.cc",
1083 "src/runtime/runtime-liveedit.cc", 1086 "src/runtime/runtime-liveedit.cc",
1084 "src/runtime/runtime-maths.cc", 1087 "src/runtime/runtime-maths.cc",
1085 "src/runtime/runtime-numbers.cc", 1088 "src/runtime/runtime-numbers.cc",
1086 "src/runtime/runtime-object.cc", 1089 "src/runtime/runtime-object.cc",
1087 "src/runtime/runtime-observe.cc", 1090 "src/runtime/runtime-observe.cc",
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 "src/d8-debug.cc", 1761 "src/d8-debug.cc",
1759 "src/d8-debug.h", 1762 "src/d8-debug.h",
1760 "$target_gen_dir/d8-js.cc", 1763 "$target_gen_dir/d8-js.cc",
1761 ] 1764 ]
1762 } 1765 }
1763 if (v8_enable_i18n_support) { 1766 if (v8_enable_i18n_support) {
1764 deps += [ "//third_party/icu" ] 1767 deps += [ "//third_party/icu" ]
1765 } 1768 }
1766 } 1769 }
1767 } 1770 }
OLDNEW
« no previous file with comments | « no previous file | src/futex-emulation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698