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

Side by Side Diff: BUILD.gn

Issue 2007143003: [gn] Add cctest (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix, rebase, comment Created 4 years, 6 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') | 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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 2050 matching lines...) Expand 10 before | Expand all | Expand 10 after
2061 2061
2062 if (want_v8_shell) { 2062 if (want_v8_shell) {
2063 deps += [ 2063 deps += [
2064 ":v8_shell", 2064 ":v8_shell",
2065 ] 2065 ]
2066 } 2066 }
2067 2067
2068 if (host_os != "mac" || !is_android) { 2068 if (host_os != "mac" || !is_android) {
2069 # These items don't compile for Android on Mac. 2069 # These items don't compile for Android on Mac.
2070 deps += [ 2070 deps += [
2071 "test/cctest:cctest",
2071 "test/unittests:unittests", 2072 "test/unittests:unittests",
2072 ] 2073 ]
2073 } 2074 }
2074 } 2075 }
2075 2076
2076 if (is_component_build) { 2077 if (is_component_build) {
2077 component("v8") { 2078 component("v8") {
2078 sources = [ 2079 sources = [
2079 "src/v8dll-main.cc", 2080 "src/v8dll-main.cc",
2080 ] 2081 ]
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2227 sources = [ 2228 sources = [
2228 "test/fuzzer/wasm-asmjs.cc", 2229 "test/fuzzer/wasm-asmjs.cc",
2229 ] 2230 ]
2230 2231
2231 deps = [ 2232 deps = [
2232 ":fuzzer_support", 2233 ":fuzzer_support",
2233 ] 2234 ]
2234 2235
2235 configs = [ ":internal_config" ] 2236 configs = [ ":internal_config" ]
2236 } 2237 }
OLDNEW
« no previous file with comments | « no previous file | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698