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

Side by Side Diff: build/all.gyp

Issue 2745004: Add chromoting option for gyp. (Closed)
Patch Set: Created 10 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 | « no previous file | build/common.gypi » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ['toolkit_views==1', { 118 ['toolkit_views==1', {
119 'dependencies': [ 119 'dependencies': [
120 '../views/views.gyp:*', 120 '../views/views.gyp:*',
121 ], 121 ],
122 }], 122 }],
123 ['chromeos==1', { 123 ['chromeos==1', {
124 'dependencies': [ 124 'dependencies': [
125 '../chrome/browser/chromeos/text_input/text_input.gyp:*', 125 '../chrome/browser/chromeos/text_input/text_input.gyp:*',
126 ], 126 ],
127 }], 127 }],
128 ['chromoting==1', {
129 'dependencies': [
130 '../remoting/chromoting.gyp:*',
131 ],
132 }],
128 ], 133 ],
129 }, 134 },
130 ], 135 ],
131 'conditions': [ 136 'conditions': [
132 ['OS=="mac"', { 137 ['OS=="mac"', {
133 'targets': [ 138 'targets': [
134 { 139 {
135 # Target to build everything plus the dmg. We don't put the dmg 140 # Target to build everything plus the dmg. We don't put the dmg
136 # in the All target because developers really don't need it. 141 # in the All target because developers really don't need it.
137 'target_name': 'all_and_dmg', 142 'target_name': 'all_and_dmg',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 ], # targets 327 ], # targets
323 }], # "chromeos==1" 328 }], # "chromeos==1"
324 ], # conditions 329 ], # conditions
325 } 330 }
326 331
327 # Local Variables: 332 # Local Variables:
328 # tab-width:2 333 # tab-width:2
329 # indent-tabs-mode:nil 334 # indent-tabs-mode:nil
330 # End: 335 # End:
331 # vim: set expandtab tabstop=2 shiftwidth=2: 336 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698