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

Side by Side Diff: extensions/browser/BUILD.gn

Issue 1900233004: [chrome.displaySource] Implement software based H.264 video encoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Check proprietary_codecs 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 | extensions/common/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/features.gni") 5 import("//build/config/features.gni")
6 import("//extensions/extensions.gni") 6 import("//extensions/extensions.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [] 10 sources = []
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 if (is_win || is_mac) { 94 if (is_win || is_mac) {
95 deps += [ "//components/wifi" ] 95 deps += [ "//components/wifi" ]
96 96
97 win_or_mac_sources = rebase_path( 97 win_or_mac_sources = rebase_path(
98 extensions_gypi_values.extensions_browser_sources_win_or_mac, 98 extensions_gypi_values.extensions_browser_sources_win_or_mac,
99 ".", 99 ".",
100 "//extensions") 100 "//extensions")
101 sources += win_or_mac_sources 101 sources += win_or_mac_sources
102 } 102 }
103 } 103 }
104 if (enable_wifi_display) { 104 if (proprietary_codecs && enable_wifi_display) {
105 wifi_display_sources = rebase_path( 105 wifi_display_sources = rebase_path(
106 extensions_gypi_values.extensions_browser_sources_wifi_display, 106 extensions_gypi_values.extensions_browser_sources_wifi_display,
107 ".", 107 ".",
108 "//extensions") 108 "//extensions")
109 sources += wifi_display_sources 109 sources += wifi_display_sources
110 } 110 }
111 } 111 }
112 } 112 }
113 } 113 }
OLDNEW
« no previous file with comments | « no previous file | extensions/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698