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

Side by Side Diff: build/all.gyp

Issue 551043: Hook third_party/chromeos_text_input to all.gyp for Chromium OS. (Closed)
Patch Set: Created 10 years, 11 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 | no next file » | 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 }, { 112 }, {
113 'dependencies': [ 113 'dependencies': [
114 '../third_party/libevent/libevent.gyp:*', 114 '../third_party/libevent/libevent.gyp:*',
115 ], 115 ],
116 }], 116 }],
117 ['OS=="win" or (OS=="linux" and toolkit_views==1)', { 117 ['OS=="win" or (OS=="linux" and toolkit_views==1)', {
118 'dependencies': [ 118 'dependencies': [
119 '../views/views.gyp:*', 119 '../views/views.gyp:*',
120 ], 120 ],
121 }], 121 }],
122 ['chromeos==1', {
123 'dependencies': [
124 '../third_party/chromeos_text_input/text_input.gyp:*',
125 ],
126 }],
122 ], 127 ],
123 }, 128 },
124 ], 129 ],
125 'conditions': [ 130 'conditions': [
126 ['OS=="mac"', { 131 ['OS=="mac"', {
127 'targets': [ 132 'targets': [
128 { 133 {
129 # Target to build everything plus the dmg. We don't put the dmg 134 # Target to build everything plus the dmg. We don't put the dmg
130 # in the All target because developers really don't need it. 135 # in the All target because developers really don't need it.
131 'target_name': 'all_and_dmg', 136 'target_name': 'all_and_dmg',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 ], # targets 256 ], # targets
252 }], # OS="win" 257 }], # OS="win"
253 ], # conditions 258 ], # conditions
254 } 259 }
255 260
256 # Local Variables: 261 # Local Variables:
257 # tab-width:2 262 # tab-width:2
258 # indent-tabs-mode:nil 263 # indent-tabs-mode:nil
259 # End: 264 # End:
260 # vim: set expandtab tabstop=2 shiftwidth=2: 265 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698