OLD | NEW |
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 'includes': [ | 6 'includes': [ |
7 '../build/common.gypi', | 7 '../build/common.gypi', |
8 ], | 8 ], |
9 'conditions': [ | 9 'conditions': [ |
10 [ 'OS=="mac"', { | 10 [ 'OS=="mac"', { |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 'direct_dependent_settings': { | 209 'direct_dependent_settings': { |
210 'include_dirs': [ | 210 'include_dirs': [ |
211 'src', | 211 'src', |
212 ], | 212 ], |
213 }, | 213 }, |
214 }, | 214 }, |
215 ], | 215 ], |
216 }], | 216 }], |
217 [ 'OS=="linux"', { | 217 [ 'OS=="linux"', { |
218 'conditions': [ | 218 'conditions': [ |
219 # Tools needed for archiving build symbols. | 219 # Tools needed for archiving official build symbols. |
220 ['branding=="Chrome" or linux_breakpad==1', { | 220 ['branding=="Chrome"', { |
221 'targets': [ | 221 'targets': [ |
222 { | 222 { |
223 'target_name': 'symupload', | 223 'target_name': 'symupload', |
224 'type': 'executable', | 224 'type': 'executable', |
225 | 225 |
226 # This uses the system libcurl, so don't use the default 32-bit | 226 # This uses the system libcurl, so don't use the default 32-bit |
227 # compile flags when building on a 64-bit machine. | 227 # compile flags when building on a 64-bit machine. |
228 'variables': { | 228 'variables': { |
229 'host_arch': '<!(uname -m)', | 229 'host_arch': '<!(uname -m)', |
230 }, | 230 }, |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 ], | 331 ], |
332 | 332 |
333 'include_dirs': [ | 333 'include_dirs': [ |
334 '..', | 334 '..', |
335 ], | 335 ], |
336 }, | 336 }, |
337 ], | 337 ], |
338 }], | 338 }], |
339 ], | 339 ], |
340 } | 340 } |
OLD | NEW |