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

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

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed one cardboard reference Created 5 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 | « build/common.gypi ('k') | build/config/features.gni » ('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 (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/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build/module_args/v8.gni") 10 import("//build/module_args/v8.gni")
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 defines += [ "OFFICIAL_BUILD" ] 262 defines += [ "OFFICIAL_BUILD" ]
263 } 263 }
264 if (is_chrome_branded) { 264 if (is_chrome_branded) {
265 defines += [ "GOOGLE_CHROME_BUILD" ] 265 defines += [ "GOOGLE_CHROME_BUILD" ]
266 } else { 266 } else {
267 defines += [ "CHROMIUM_BUILD" ] 267 defines += [ "CHROMIUM_BUILD" ]
268 } 268 }
269 if (enable_media_router) { 269 if (enable_media_router) {
270 defines += [ "ENABLE_MEDIA_ROUTER=1" ] 270 defines += [ "ENABLE_MEDIA_ROUTER=1" ]
271 } 271 }
272 if (enable_webvr) {
273 defines += [ "ENABLE_WEBVR" ]
274 }
272 } 275 }
273 276
274 # Debug/release ---------------------------------------------------------------- 277 # Debug/release ----------------------------------------------------------------
275 278
276 config("debug") { 279 config("debug") {
277 defines = [ 280 defines = [
278 "_DEBUG", 281 "_DEBUG",
279 "DYNAMIC_ANNOTATIONS_ENABLED=1", 282 "DYNAMIC_ANNOTATIONS_ENABLED=1",
280 "WTF_USE_DYNAMIC_ANNOTATIONS=1", 283 "WTF_USE_DYNAMIC_ANNOTATIONS=1",
281 ] 284 ]
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 "CoreFoundation.framework", 389 "CoreFoundation.framework",
387 "CoreGraphics.framework", 390 "CoreGraphics.framework",
388 "CoreText.framework", 391 "CoreText.framework",
389 "Foundation.framework", 392 "Foundation.framework",
390 "UIKit.framework", 393 "UIKit.framework",
391 ] 394 ]
392 } else if (is_linux) { 395 } else if (is_linux) {
393 libs = [ "dl" ] 396 libs = [ "dl" ]
394 } 397 }
395 } 398 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698