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

Side by Side Diff: components/components.gyp

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Improved thread-safety Created 5 years, 1 month 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'audio_modem.gypi', 137 'audio_modem.gypi',
138 'copresence.gypi', 138 'copresence.gypi',
139 'feedback.gypi', 139 'feedback.gypi',
140 'proximity_auth.gypi', 140 'proximity_auth.gypi',
141 'storage_monitor.gypi', 141 'storage_monitor.gypi',
142 'webusb.gypi', 142 'webusb.gypi',
143 ] 143 ]
144 }], 144 }],
145 ['chromeos == 1', { 145 ['chromeos == 1', {
146 'includes': [ 146 'includes': [
147 'arc.gypi',
147 'pairing.gypi', 148 'pairing.gypi',
148 'timers.gypi', 149 'timers.gypi',
149 'wifi_sync.gypi', 150 'wifi_sync.gypi',
150 ], 151 ],
151 }], 152 }],
152 ['OS == "win" or OS == "mac"', { 153 ['OS == "win" or OS == "mac"', {
153 'includes': [ 154 'includes': [
154 'wifi.gypi', 155 'wifi.gypi',
155 ], 156 ],
156 }], 157 }],
(...skipping 30 matching lines...) Expand all
187 'chrome_apps.gypi', 188 'chrome_apps.gypi',
188 ], 189 ],
189 }], 190 }],
190 ['enable_rlz_support==1', { 191 ['enable_rlz_support==1', {
191 'includes': [ 192 'includes': [
192 'rlz.gypi', 193 'rlz.gypi',
193 ], 194 ],
194 }] 195 }]
195 ], 196 ],
196 } 197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698