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

Side by Side Diff: test/unittests/BUILD.gn

Issue 2343423002: Use git ls-tree to collect source files instead of walking the fs (Closed)
Patch Set: updates 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 | tools/oom_dump/README » ('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 2016 The V8 project authors. All rights reserved. 1 # Copyright 2016 The V8 project 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("../../gni/v8.gni") 5 import("../../gni/v8.gni")
6 6
7 v8_executable("unittests") { 7 v8_executable("unittests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
11 "../../testing/gmock-support.h",
12 "../../testing/gtest-support.h",
11 "base/atomic-utils-unittest.cc", 13 "base/atomic-utils-unittest.cc",
12 "base/bits-unittest.cc", 14 "base/bits-unittest.cc",
13 "base/cpu-unittest.cc", 15 "base/cpu-unittest.cc",
14 "base/division-by-constant-unittest.cc", 16 "base/division-by-constant-unittest.cc",
15 "base/flags-unittest.cc", 17 "base/flags-unittest.cc",
16 "base/functional-unittest.cc", 18 "base/functional-unittest.cc",
17 "base/ieee754-unittest.cc", 19 "base/ieee754-unittest.cc",
18 "base/iterator-unittest.cc", 20 "base/iterator-unittest.cc",
19 "base/logging-unittest.cc", 21 "base/logging-unittest.cc",
20 "base/platform/condition-variable-unittest.cc", 22 "base/platform/condition-variable-unittest.cc",
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 182
181 # Suppress warnings about importing locally defined symbols. 183 # Suppress warnings about importing locally defined symbols.
182 if (is_component_build) { 184 if (is_component_build) {
183 ldflags = [ 185 ldflags = [
184 "/ignore:4049", 186 "/ignore:4049",
185 "/ignore:4217", 187 "/ignore:4217",
186 ] 188 ]
187 } 189 }
188 } 190 }
189 } 191 }
OLDNEW
« no previous file with comments | « no previous file | tools/oom_dump/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698