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

Side by Side Diff: BUILD.gn

Issue 2010243003: Move hashmap into base/. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 6 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/address-map.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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 "src/futex-emulation.cc", 1173 "src/futex-emulation.cc",
1174 "src/futex-emulation.h", 1174 "src/futex-emulation.h",
1175 "src/gdb-jit.cc", 1175 "src/gdb-jit.cc",
1176 "src/gdb-jit.h", 1176 "src/gdb-jit.h",
1177 "src/global-handles.cc", 1177 "src/global-handles.cc",
1178 "src/global-handles.h", 1178 "src/global-handles.h",
1179 "src/globals.h", 1179 "src/globals.h",
1180 "src/handles-inl.h", 1180 "src/handles-inl.h",
1181 "src/handles.cc", 1181 "src/handles.cc",
1182 "src/handles.h", 1182 "src/handles.h",
1183 "src/hashmap.h",
1184 "src/heap-symbols.h", 1183 "src/heap-symbols.h",
1185 "src/heap/array-buffer-tracker.cc", 1184 "src/heap/array-buffer-tracker.cc",
1186 "src/heap/array-buffer-tracker.h", 1185 "src/heap/array-buffer-tracker.h",
1187 "src/heap/gc-idle-time-handler.cc", 1186 "src/heap/gc-idle-time-handler.cc",
1188 "src/heap/gc-idle-time-handler.h", 1187 "src/heap/gc-idle-time-handler.h",
1189 "src/heap/gc-tracer.cc", 1188 "src/heap/gc-tracer.cc",
1190 "src/heap/gc-tracer.h", 1189 "src/heap/gc-tracer.h",
1191 "src/heap/heap-inl.h", 1190 "src/heap/heap-inl.h",
1192 "src/heap/heap.cc", 1191 "src/heap/heap.cc",
1193 "src/heap/heap.h", 1192 "src/heap/heap.h",
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1891 "src/base/cpu.cc", 1890 "src/base/cpu.cc",
1892 "src/base/cpu.h", 1891 "src/base/cpu.h",
1893 "src/base/division-by-constant.cc", 1892 "src/base/division-by-constant.cc",
1894 "src/base/division-by-constant.h", 1893 "src/base/division-by-constant.h",
1895 "src/base/file-utils.cc", 1894 "src/base/file-utils.cc",
1896 "src/base/file-utils.h", 1895 "src/base/file-utils.h",
1897 "src/base/flags.h", 1896 "src/base/flags.h",
1898 "src/base/format-macros.h", 1897 "src/base/format-macros.h",
1899 "src/base/functional.cc", 1898 "src/base/functional.cc",
1900 "src/base/functional.h", 1899 "src/base/functional.h",
1900 "src/base/hashmap.h",
1901 "src/base/iterator.h", 1901 "src/base/iterator.h",
1902 "src/base/lazy-instance.h", 1902 "src/base/lazy-instance.h",
1903 "src/base/logging.cc", 1903 "src/base/logging.cc",
1904 "src/base/logging.h", 1904 "src/base/logging.h",
1905 "src/base/macros.h", 1905 "src/base/macros.h",
1906 "src/base/once.cc", 1906 "src/base/once.cc",
1907 "src/base/once.h", 1907 "src/base/once.h",
1908 "src/base/platform/condition-variable.cc", 1908 "src/base/platform/condition-variable.cc",
1909 "src/base/platform/condition-variable.h", 1909 "src/base/platform/condition-variable.h",
1910 "src/base/platform/elapsed-timer.h", 1910 "src/base/platform/elapsed-timer.h",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1990 1990
1991 public_configs = [ ":libplatform_config" ] 1991 public_configs = [ ":libplatform_config" ]
1992 1992
1993 deps = [ 1993 deps = [
1994 ":v8_libbase", 1994 ":v8_libbase",
1995 ] 1995 ]
1996 } 1996 }
1997 1997
1998 v8_source_set("v8_libsampler") { 1998 v8_source_set("v8_libsampler") {
1999 sources = [ 1999 sources = [
2000 "src/libsampler/hashmap.h",
2001 "src/libsampler/utils.h",
2002 "src/libsampler/v8-sampler.cc", 2000 "src/libsampler/v8-sampler.cc",
2003 "src/libsampler/v8-sampler.h", 2001 "src/libsampler/v8-sampler.h",
2004 ] 2002 ]
2005 2003
2006 configs = [ ":internal_config_base" ] 2004 configs = [ ":internal_config_base" ]
2007 2005
2008 public_configs = [ ":libsampler_config" ] 2006 public_configs = [ ":libsampler_config" ]
2009 2007
2010 deps = [ 2008 deps = [
2011 ":v8_libbase", 2009 ":v8_libbase",
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
2293 2291
2294 deps = [ 2292 deps = [
2295 ":fuzzer_support", 2293 ":fuzzer_support",
2296 ] 2294 ]
2297 2295
2298 configs = [ ":internal_config" ] 2296 configs = [ ":internal_config" ]
2299 } 2297 }
2300 2298
2301 v8_fuzzer("wasm_asmjs_fuzzer") { 2299 v8_fuzzer("wasm_asmjs_fuzzer") {
2302 } 2300 }
OLDNEW
« no previous file with comments | « no previous file | src/address-map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698