OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 ], | 365 ], |
366 'include_dirs': [ | 366 'include_dirs': [ |
367 'src', | 367 'src', |
368 'src/third_party', | 368 'src/third_party', |
369 '..', | 369 '..', |
370 ], | 370 ], |
371 }, | 371 }, |
372 { | 372 { |
373 'target_name': 'symupload', | 373 'target_name': 'symupload', |
374 'type': 'executable', | 374 'type': 'executable', |
375 'toolsets': [ 'host', ], | |
376 | 375 |
377 # This uses the system libcurl, so don't use the default 32-bit | 376 # This uses the system libcurl, so don't use the default 32-bit |
378 # compile flags when building on a 64-bit machine. | 377 # compile flags when building on a 64-bit machine. |
379 'variables': { | 378 'variables': { |
380 'host_arch': '<!(uname -m)', | 379 'host_arch': '<!(uname -m)', |
381 }, | 380 }, |
382 'conditions': [ | 381 'conditions': [ |
383 ['host_arch=="x86_64"', { | 382 ['host_arch=="x86_64"', { |
384 'cflags!': ['-m32', '-march=pentium4', '-msse2', | 383 'cflags!': ['-m32', '-march=pentium4', '-msse2', |
385 '-mfpmath=sse'], | 384 '-mfpmath=sse'], |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
842 'include_dirs': [ | 841 'include_dirs': [ |
843 '<(DEPTH)/third_party/GTM', | 842 '<(DEPTH)/third_party/GTM', |
844 '<(DEPTH)/third_party/GTM/Foundation', | 843 '<(DEPTH)/third_party/GTM/Foundation', |
845 ], | 844 ], |
846 }, | 845 }, |
847 }, | 846 }, |
848 ], | 847 ], |
849 }], | 848 }], |
850 ], | 849 ], |
851 } | 850 } |
OLD | NEW |