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

Side by Side Diff: BUILD.gn

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Renamed defines to match new file locations Created 4 years, 3 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/api.cc » ('j') | src/compiler/live-range-separator.h » ('J')
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 1678 matching lines...) Expand 10 before | Expand all | Expand 10 after
1689 "src/wasm/wasm-interpreter.h", 1689 "src/wasm/wasm-interpreter.h",
1690 "src/wasm/wasm-js.cc", 1690 "src/wasm/wasm-js.cc",
1691 "src/wasm/wasm-js.h", 1691 "src/wasm/wasm-js.h",
1692 "src/wasm/wasm-macro-gen.h", 1692 "src/wasm/wasm-macro-gen.h",
1693 "src/wasm/wasm-module.cc", 1693 "src/wasm/wasm-module.cc",
1694 "src/wasm/wasm-module.h", 1694 "src/wasm/wasm-module.h",
1695 "src/wasm/wasm-opcodes.cc", 1695 "src/wasm/wasm-opcodes.cc",
1696 "src/wasm/wasm-opcodes.h", 1696 "src/wasm/wasm-opcodes.h",
1697 "src/wasm/wasm-result.cc", 1697 "src/wasm/wasm-result.cc",
1698 "src/wasm/wasm-result.h", 1698 "src/wasm/wasm-result.h",
1699 "src/zone-allocator.h", 1699 "src/zone/accounting-allocator.cc",
1700 "src/zone-containers.h", 1700 "src/zone/accounting-allocator.h",
1701 "src/zone.cc", 1701 "src/zone/zone-allocator.h",
1702 "src/zone.h", 1702 "src/zone/zone-allocator.h",
1703 "src/zone/zone-containers.h",
1704 "src/zone/zone-segment.h",
1705 "src/zone/zone-segment.h",
1706 "src/zone/zone.cc",
1707 "src/zone/zone.h",
1703 ] 1708 ]
1704 1709
1705 if (v8_current_cpu == "x86") { 1710 if (v8_current_cpu == "x86") {
1706 sources += [ 1711 sources += [
1707 "src/builtins/ia32/builtins-ia32.cc", 1712 "src/builtins/ia32/builtins-ia32.cc",
1708 "src/compiler/ia32/code-generator-ia32.cc", 1713 "src/compiler/ia32/code-generator-ia32.cc",
1709 "src/compiler/ia32/instruction-codes-ia32.h", 1714 "src/compiler/ia32/instruction-codes-ia32.h",
1710 "src/compiler/ia32/instruction-scheduler-ia32.cc", 1715 "src/compiler/ia32/instruction-scheduler-ia32.cc",
1711 "src/compiler/ia32/instruction-selector-ia32.cc", 1716 "src/compiler/ia32/instruction-selector-ia32.cc",
1712 "src/crankshaft/ia32/lithium-codegen-ia32.cc", 1717 "src/crankshaft/ia32/lithium-codegen-ia32.cc",
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
2050 2055
2051 if (v8_enable_inspector_override) { 2056 if (v8_enable_inspector_override) {
2052 deps += [ "src/inspector:inspector" ] 2057 deps += [ "src/inspector:inspector" ]
2053 } 2058 }
2054 } 2059 }
2055 2060
2056 v8_source_set("v8_libbase") { 2061 v8_source_set("v8_libbase") {
2057 visibility = [ ":*" ] # Only targets in this file can depend on this. 2062 visibility = [ ":*" ] # Only targets in this file can depend on this.
2058 2063
2059 sources = [ 2064 sources = [
2060 "src/base/accounting-allocator.cc",
2061 "src/base/accounting-allocator.h",
2062 "src/base/adapters.h", 2065 "src/base/adapters.h",
2063 "src/base/atomic-utils.h", 2066 "src/base/atomic-utils.h",
2064 "src/base/atomicops.h", 2067 "src/base/atomicops.h",
2065 "src/base/atomicops_internals_arm64_gcc.h", 2068 "src/base/atomicops_internals_arm64_gcc.h",
2066 "src/base/atomicops_internals_arm_gcc.h", 2069 "src/base/atomicops_internals_arm_gcc.h",
2067 "src/base/atomicops_internals_atomicword_compat.h", 2070 "src/base/atomicops_internals_atomicword_compat.h",
2068 "src/base/atomicops_internals_mac.h", 2071 "src/base/atomicops_internals_mac.h",
2069 "src/base/atomicops_internals_mips64_gcc.h", 2072 "src/base/atomicops_internals_mips64_gcc.h",
2070 "src/base/atomicops_internals_mips_gcc.h", 2073 "src/base/atomicops_internals_mips_gcc.h",
2071 "src/base/atomicops_internals_s390_gcc.h", 2074 "src/base/atomicops_internals_s390_gcc.h",
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
2770 ":fuzzer_support", 2773 ":fuzzer_support",
2771 ":lib_wasm_section_fuzzer", 2774 ":lib_wasm_section_fuzzer",
2772 ":wasm_module_runner", 2775 ":wasm_module_runner",
2773 ] 2776 ]
2774 2777
2775 configs = [ ":internal_config" ] 2778 configs = [ ":internal_config" ]
2776 } 2779 }
2777 2780
2778 v8_fuzzer("wasm_data_section_fuzzer") { 2781 v8_fuzzer("wasm_data_section_fuzzer") {
2779 } 2782 }
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/compiler/live-range-separator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698