| 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 'conditions': [ | |
| 376 ['OS=="android"', { | |
| 377 'toolsets': [ 'host' ], | |
| 378 }], | |
| 379 ], | |
| 380 | 375 |
| 381 # 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 |
| 382 # compile flags when building on a 64-bit machine. | 377 # compile flags when building on a 64-bit machine. |
| 383 'variables': { | 378 'variables': { |
| 384 'host_arch': '<!(uname -m)', | 379 'host_arch': '<!(uname -m)', |
| 385 }, | 380 }, |
| 386 'conditions': [ | 381 'conditions': [ |
| 387 ['host_arch=="x86_64"', { | 382 ['host_arch=="x86_64"', { |
| 388 'cflags!': ['-m32', '-march=pentium4', '-msse2', | 383 'cflags!': ['-m32', '-march=pentium4', '-msse2', |
| 389 '-mfpmath=sse'], | 384 '-mfpmath=sse'], |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 'include_dirs': [ | 841 'include_dirs': [ |
| 847 '<(DEPTH)/third_party/GTM', | 842 '<(DEPTH)/third_party/GTM', |
| 848 '<(DEPTH)/third_party/GTM/Foundation', | 843 '<(DEPTH)/third_party/GTM/Foundation', |
| 849 ], | 844 ], |
| 850 }, | 845 }, |
| 851 }, | 846 }, |
| 852 ], | 847 ], |
| 853 }], | 848 }], |
| 854 ], | 849 ], |
| 855 } | 850 } |
| OLD | NEW |