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

Side by Side Diff: BUILD.gn

Issue 2007143003: [gn] Add cctest (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 | test/cctest/BUILD.gn » ('j') | test/cctest/BUILD.gn » ('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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 2027 matching lines...) Expand 10 before | Expand all | Expand 10 after
2038 2038
2039 if (want_v8_shell) { 2039 if (want_v8_shell) {
2040 deps += [ 2040 deps += [
2041 ":v8_shell", 2041 ":v8_shell",
2042 ] 2042 ]
2043 } 2043 }
2044 2044
2045 if (host_os != "mac" || !is_android) { 2045 if (host_os != "mac" || !is_android) {
2046 # These items don't compile for Android on Mac. 2046 # These items don't compile for Android on Mac.
2047 deps += [ 2047 deps += [
2048 "test/cctest:cctest",
2048 "test/unittests:unittests", 2049 "test/unittests:unittests",
2049 ] 2050 ]
2050 } 2051 }
2051 } 2052 }
2052 2053
2053 if (is_component_build) { 2054 if (is_component_build) {
2054 component("v8") { 2055 component("v8") {
2055 sources = [ 2056 sources = [
2056 "src/v8dll-main.cc", 2057 "src/v8dll-main.cc",
2057 ] 2058 ]
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2204 sources = [ 2205 sources = [
2205 "test/fuzzer/wasm-asmjs.cc", 2206 "test/fuzzer/wasm-asmjs.cc",
2206 ] 2207 ]
2207 2208
2208 deps = [ 2209 deps = [
2209 ":fuzzer_support", 2210 ":fuzzer_support",
2210 ] 2211 ]
2211 2212
2212 configs = [ ":internal_config" ] 2213 configs = [ ":internal_config" ]
2213 } 2214 }
OLDNEW
« no previous file with comments | « no previous file | test/cctest/BUILD.gn » ('j') | test/cctest/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698