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

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

Issue 712463004: media: Support MojoRendererService in the browser process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN build. 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 | « 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/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 import("//build/module_args/v8.gni")
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 defines += [ "ENABLE_NOTIFICATIONS" ] 45 defines += [ "ENABLE_NOTIFICATIONS" ]
46 } 46 }
47 if (enable_pepper_cdms) { 47 if (enable_pepper_cdms) {
48 # TODO(brettw) should probably be "=1" 48 # TODO(brettw) should probably be "=1"
49 defines += [ "ENABLE_PEPPER_CDMS" ] 49 defines += [ "ENABLE_PEPPER_CDMS" ]
50 } 50 }
51 if (enable_browser_cdms) { 51 if (enable_browser_cdms) {
52 # TODO(brettw) should probably be "=1" 52 # TODO(brettw) should probably be "=1"
53 defines += [ "ENABLE_BROWSER_CDMS" ] 53 defines += [ "ENABLE_BROWSER_CDMS" ]
54 } 54 }
55 if (enable_mojo_media_renderer) {
56 # TODO(brettw) should probably be "=1"
57 defines += [ "ENABLE_MOJO_MEDIA_RENDERER" ]
DaleCurtis 2014/12/16 20:59:20 Just use =1 now then :)
58 }
55 if (enable_plugins) { 59 if (enable_plugins) {
56 defines += [ "ENABLE_PLUGINS=1" ] 60 defines += [ "ENABLE_PLUGINS=1" ]
57 } 61 }
58 if (enable_basic_printing || enable_print_preview) { 62 if (enable_basic_printing || enable_print_preview) {
59 # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW. 63 # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW.
60 defines += [ "ENABLE_PRINTING=1" ] 64 defines += [ "ENABLE_PRINTING=1" ]
61 if (enable_basic_printing) { 65 if (enable_basic_printing) {
62 # Enable basic printing support and UI. 66 # Enable basic printing support and UI.
63 defines += [ "ENABLE_BASIC_PRINTING=1" ] 67 defines += [ "ENABLE_BASIC_PRINTING=1" ]
64 } 68 }
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "CoreFoundation.framework", 311 "CoreFoundation.framework",
308 "CoreGraphics.framework", 312 "CoreGraphics.framework",
309 "CoreText.framework", 313 "CoreText.framework",
310 "Foundation.framework", 314 "Foundation.framework",
311 "UIKit.framework", 315 "UIKit.framework",
312 ] 316 ]
313 } else if (is_linux) { 317 } else if (is_linux) {
314 libs = [ "dl" ] 318 libs = [ "dl" ]
315 } 319 }
316 } 320 }
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