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

Side by Side Diff: build/config/BUILD.gn

Issue 753103003: Enable external V8 snapshot on Android through GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Brett's comments. Created 6 years 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 | build/module_args/v8.gni » ('j') | build/module_args/v8.gni » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/allocator.gni") 5 import("//build/config/allocator.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/module_args/v8.gni")
9 10
10 declare_args() { 11 declare_args() {
11 # When set, turns off the (normally-on) iterator debugging and related stuff 12 # When set, turns off the (normally-on) iterator debugging and related stuff
12 # that is normally turned on for Debug builds. These are generally useful for 13 # that is normally turned on for Debug builds. These are generally useful for
13 # catching bugs but in some cases may cause conflicts or excessive slowness. 14 # catching bugs but in some cases may cause conflicts or excessive slowness.
14 disable_iterator_debugging = false 15 disable_iterator_debugging = false
15 16
16 # Set to true to not store any build metadata (this isn't working yet but 17 # Set to true to not store any build metadata (this isn't working yet but
17 # this flag will help us to get there). See http://crbug.com/314403. 18 # this flag will help us to get there). See http://crbug.com/314403.
18 # TODO(sebmarchand): Update this comment once this flag guarantee that 19 # TODO(sebmarchand): Update this comment once this flag guarantee that
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 } 198 }
198 if (use_athena) { 199 if (use_athena) {
199 defines += [ "USE_ATHENA=1" ] 200 defines += [ "USE_ATHENA=1" ]
200 } 201 }
201 if (enable_hidpi) { 202 if (enable_hidpi) {
202 defines += [ "ENABLE_HIDPI=1" ] 203 defines += [ "ENABLE_HIDPI=1" ]
203 } 204 }
204 if (proprietary_codecs) { 205 if (proprietary_codecs) {
205 defines += [ "USE_PROPRIETARY_CODECS" ] 206 defines += [ "USE_PROPRIETARY_CODECS" ]
206 } 207 }
208 if (v8_use_external_startup_data) {
209 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
210 }
207 } 211 }
208 212
209 # Debug/release ---------------------------------------------------------------- 213 # Debug/release ----------------------------------------------------------------
210 214
211 config("debug") { 215 config("debug") {
212 defines = [ 216 defines = [
213 "_DEBUG", 217 "_DEBUG",
214 "DYNAMIC_ANNOTATIONS_ENABLED=1", 218 "DYNAMIC_ANNOTATIONS_ENABLED=1",
215 "WTF_USE_DYNAMIC_ANNOTATIONS=1", 219 "WTF_USE_DYNAMIC_ANNOTATIONS=1",
216 ] 220 ]
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "CoreText.framework", 307 "CoreText.framework",
304 "Foundation.framework", 308 "Foundation.framework",
305 "UIKit.framework", 309 "UIKit.framework",
306 ] 310 ]
307 } else if (is_linux) { 311 } else if (is_linux) {
308 libs = [ 312 libs = [
309 "dl", 313 "dl",
310 ] 314 ]
311 } 315 }
312 } 316 }
OLDNEW
« no previous file with comments | « no previous file | build/module_args/v8.gni » ('j') | build/module_args/v8.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698