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

Side by Side Diff: BUILD.gn

Issue 1098863003: Import Reversed adapter from Chromium and use it in v8. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed feedback. Rebased. Created 5 years, 8 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/base/adapters.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 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 if (v8_postmortem_support) { 1327 if (v8_postmortem_support) {
1328 sources += [ "$target_gen_dir/debug-support.cc" ] 1328 sources += [ "$target_gen_dir/debug-support.cc" ]
1329 deps += [ ":postmortem-metadata" ] 1329 deps += [ ":postmortem-metadata" ]
1330 } 1330 }
1331 } 1331 }
1332 1332
1333 source_set("v8_libbase") { 1333 source_set("v8_libbase") {
1334 visibility = [ ":*" ] # Only targets in this file can depend on this. 1334 visibility = [ ":*" ] # Only targets in this file can depend on this.
1335 1335
1336 sources = [ 1336 sources = [
1337 "src/base/adapters.h",
1337 "src/base/atomicops.h", 1338 "src/base/atomicops.h",
1338 "src/base/atomicops_internals_arm64_gcc.h", 1339 "src/base/atomicops_internals_arm64_gcc.h",
1339 "src/base/atomicops_internals_arm_gcc.h", 1340 "src/base/atomicops_internals_arm_gcc.h",
1340 "src/base/atomicops_internals_atomicword_compat.h", 1341 "src/base/atomicops_internals_atomicword_compat.h",
1341 "src/base/atomicops_internals_mac.h", 1342 "src/base/atomicops_internals_mac.h",
1342 "src/base/atomicops_internals_mips_gcc.h", 1343 "src/base/atomicops_internals_mips_gcc.h",
1343 "src/base/atomicops_internals_tsan.h", 1344 "src/base/atomicops_internals_tsan.h",
1344 "src/base/atomicops_internals_x86_gcc.cc", 1345 "src/base/atomicops_internals_x86_gcc.cc",
1345 "src/base/atomicops_internals_x86_gcc.h", 1346 "src/base/atomicops_internals_x86_gcc.h",
1346 "src/base/atomicops_internals_x86_msvc.h", 1347 "src/base/atomicops_internals_x86_msvc.h",
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 sources += [ 1603 sources += [
1603 "src/d8-debug.cc", 1604 "src/d8-debug.cc",
1604 "$target_gen_dir/d8-js.cc", 1605 "$target_gen_dir/d8-js.cc",
1605 ] 1606 ]
1606 } 1607 }
1607 if (v8_enable_i18n_support) { 1608 if (v8_enable_i18n_support) {
1608 deps += [ "//third_party/icu" ] 1609 deps += [ "//third_party/icu" ]
1609 } 1610 }
1610 } 1611 }
1611 } 1612 }
OLDNEW
« no previous file with comments | « no previous file | src/base/adapters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698