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

Side by Side Diff: components/components.gyp

Issue 1466143002: arc-bridge: Enable ARC with a command-line flag (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Fixed ChromeOS builds Created 5 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
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 { 5 {
6 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'includes': [ 142 'includes': [
143 'audio_modem.gypi', 143 'audio_modem.gypi',
144 'copresence.gypi', 144 'copresence.gypi',
145 'feedback.gypi', 145 'feedback.gypi',
146 'proximity_auth.gypi', 146 'proximity_auth.gypi',
147 'storage_monitor.gypi', 147 'storage_monitor.gypi',
148 ] 148 ]
149 }], 149 }],
150 ['chromeos == 1', { 150 ['chromeos == 1', {
151 'includes': [ 151 'includes': [
152 'arc.gypi',
152 'pairing.gypi', 153 'pairing.gypi',
153 'timers.gypi', 154 'timers.gypi',
154 'wifi_sync.gypi', 155 'wifi_sync.gypi',
155 ], 156 ],
156 }], 157 }],
157 ['chromeos == 1 and enable_arc == 1', {
158 'includes': [
159 'arc.gypi',
160 ],
161 }],
162 ['OS == "win" or OS == "mac"', { 158 ['OS == "win" or OS == "mac"', {
163 'includes': [ 159 'includes': [
164 'wifi.gypi', 160 'wifi.gypi',
165 ], 161 ],
166 }], 162 }],
167 ['OS == "win"', { 163 ['OS == "win"', {
168 'includes': [ 164 'includes': [
169 'browser_watcher.gypi', 165 'browser_watcher.gypi',
170 ], 166 ],
171 }], 167 }],
(...skipping 30 matching lines...) Expand all
202 'rlz.gypi', 198 'rlz.gypi',
203 ], 199 ],
204 }], 200 }],
205 ['use_ash==1', { 201 ['use_ash==1', {
206 'includes': [ 202 'includes': [
207 'exo.gypi', 203 'exo.gypi',
208 ], 204 ],
209 }], 205 }],
210 ], 206 ],
211 } 207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698