OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 'src/common/linux/guid_creator.h', | 307 'src/common/linux/guid_creator.h', |
308 'src/common/linux/libcurl_wrapper.cc', | 308 'src/common/linux/libcurl_wrapper.cc', |
309 'src/common/linux/libcurl_wrapper.h', | 309 'src/common/linux/libcurl_wrapper.h', |
310 'src/common/linux/linux_libc_support.h', | 310 'src/common/linux/linux_libc_support.h', |
311 'src/common/linux/linux_syscall_support.h', | 311 'src/common/linux/linux_syscall_support.h', |
312 'src/common/memory.h', | 312 'src/common/memory.h', |
313 'src/common/string_conversion.cc', | 313 'src/common/string_conversion.cc', |
314 'src/common/string_conversion.h', | 314 'src/common/string_conversion.h', |
315 ], | 315 ], |
316 | 316 |
| 317 'conditions': [ |
| 318 ['target_arch=="arm"', { |
| 319 'cflags': ['-Wa,-mimplicit-it=always'], |
| 320 }], |
| 321 ], |
| 322 |
317 'link_settings': { | 323 'link_settings': { |
318 'libraries': [ | 324 'libraries': [ |
319 '-ldl', | 325 '-ldl', |
320 ], | 326 ], |
321 }, | 327 }, |
322 | 328 |
323 'include_dirs': [ | 329 'include_dirs': [ |
324 'src', | 330 'src', |
325 'src/client', | 331 'src/client', |
326 'src/third_party/linux/include', | 332 'src/third_party/linux/include', |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 ], | 421 ], |
416 }], | 422 }], |
417 ], | 423 ], |
418 } | 424 } |
419 | 425 |
420 # Local Variables: | 426 # Local Variables: |
421 # tab-width:2 | 427 # tab-width:2 |
422 # indent-tabs-mode:nil | 428 # indent-tabs-mode:nil |
423 # End: | 429 # End: |
424 # vim: set expandtab tabstop=2 shiftwidth=2: | 430 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |