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

Side by Side Diff: BUILD.gn

Issue 1221433021: Move SmartPointer to base. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/ast.h » ('j') | src/base/smart-pointers.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/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 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 "src/scanner-character-streams.h", 1059 "src/scanner-character-streams.h",
1060 "src/scanner.cc", 1060 "src/scanner.cc",
1061 "src/scanner.h", 1061 "src/scanner.h",
1062 "src/scopeinfo.cc", 1062 "src/scopeinfo.cc",
1063 "src/scopeinfo.h", 1063 "src/scopeinfo.h",
1064 "src/scopes.cc", 1064 "src/scopes.cc",
1065 "src/scopes.h", 1065 "src/scopes.h",
1066 "src/signature.h", 1066 "src/signature.h",
1067 "src/simulator.h", 1067 "src/simulator.h",
1068 "src/small-pointer-list.h", 1068 "src/small-pointer-list.h",
1069 "src/smart-pointers.h",
1070 "src/snapshot/natives.h", 1069 "src/snapshot/natives.h",
1071 "src/snapshot/serialize.cc", 1070 "src/snapshot/serialize.cc",
1072 "src/snapshot/serialize.h", 1071 "src/snapshot/serialize.h",
1073 "src/snapshot/snapshot-common.cc", 1072 "src/snapshot/snapshot-common.cc",
1074 "src/snapshot/snapshot-source-sink.cc", 1073 "src/snapshot/snapshot-source-sink.cc",
1075 "src/snapshot/snapshot-source-sink.h", 1074 "src/snapshot/snapshot-source-sink.h",
1076 "src/splay-tree.h", 1075 "src/splay-tree.h",
1077 "src/splay-tree-inl.h", 1076 "src/splay-tree-inl.h",
1078 "src/snapshot/snapshot.h", 1077 "src/snapshot/snapshot.h",
1079 "src/string-builder.cc", 1078 "src/string-builder.cc",
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
1469 "src/base/platform/condition-variable.h", 1468 "src/base/platform/condition-variable.h",
1470 "src/base/platform/mutex.cc", 1469 "src/base/platform/mutex.cc",
1471 "src/base/platform/mutex.h", 1470 "src/base/platform/mutex.h",
1472 "src/base/platform/platform.h", 1471 "src/base/platform/platform.h",
1473 "src/base/platform/semaphore.cc", 1472 "src/base/platform/semaphore.cc",
1474 "src/base/platform/semaphore.h", 1473 "src/base/platform/semaphore.h",
1475 "src/base/safe_conversions.h", 1474 "src/base/safe_conversions.h",
1476 "src/base/safe_conversions_impl.h", 1475 "src/base/safe_conversions_impl.h",
1477 "src/base/safe_math.h", 1476 "src/base/safe_math.h",
1478 "src/base/safe_math_impl.h", 1477 "src/base/safe_math_impl.h",
1478 "src/hase/smart-pointers.h",
1479 "src/base/sys-info.cc", 1479 "src/base/sys-info.cc",
1480 "src/base/sys-info.h", 1480 "src/base/sys-info.h",
1481 "src/base/utils/random-number-generator.cc", 1481 "src/base/utils/random-number-generator.cc",
1482 "src/base/utils/random-number-generator.h", 1482 "src/base/utils/random-number-generator.h",
1483 ] 1483 ]
1484 1484
1485 configs -= [ "//build/config/compiler:chromium_code" ] 1485 configs -= [ "//build/config/compiler:chromium_code" ]
1486 configs += [ "//build/config/compiler:no_chromium_code" ] 1486 configs += [ "//build/config/compiler:no_chromium_code" ]
1487 configs += [ 1487 configs += [
1488 ":internal_config_base", 1488 ":internal_config_base",
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1712 "src/d8-debug.cc", 1712 "src/d8-debug.cc",
1713 "src/d8-debug.h", 1713 "src/d8-debug.h",
1714 "$target_gen_dir/d8-js.cc", 1714 "$target_gen_dir/d8-js.cc",
1715 ] 1715 ]
1716 } 1716 }
1717 if (v8_enable_i18n_support) { 1717 if (v8_enable_i18n_support) {
1718 deps += [ "//third_party/icu" ] 1718 deps += [ "//third_party/icu" ]
1719 } 1719 }
1720 } 1720 }
1721 } 1721 }
OLDNEW
« no previous file with comments | « no previous file | src/ast.h » ('j') | src/base/smart-pointers.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698