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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'chrome', | 8 'target_name': 'chrome', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 # NOTE: chrome/app/theme/chromium/BRANDING and | 409 # NOTE: chrome/app/theme/chromium/BRANDING and |
410 # chrome/app/theme/google_chrome/BRANDING have the short name | 410 # chrome/app/theme/google_chrome/BRANDING have the short name |
411 # "chrome" etc.; should we try to extract from there instead? | 411 # "chrome" etc.; should we try to extract from there instead? |
412 | 412 |
413 # On Mac, this is done in chrome_dll.gypi. | 413 # On Mac, this is done in chrome_dll.gypi. |
414 ['internal_pdf', { | 414 ['internal_pdf', { |
415 'dependencies': [ | 415 'dependencies': [ |
416 '../pdf/pdf.gyp:pdf', | 416 '../pdf/pdf.gyp:pdf', |
417 ], | 417 ], |
418 'conditions': [ | 418 'conditions': [ |
419 ['OS=="linux" and linux_dump_symbols==1', { | 419 # TODO(thestig) It would be nice to do this for CrOS as well, |
| 420 # but when I tried that, it failed because dump_syms is built |
| 421 # for the target arch rather than the host arch. |
| 422 # http://crbug.com/140571 |
| 423 ['OS=="linux" and chromeos==0 and linux_dump_symbols==1', { |
420 'dependencies': [ | 424 'dependencies': [ |
421 '../pdf/pdf.gyp:pdf_linux_symbols', | 425 '../pdf/pdf.gyp:pdf_linux_symbols', |
422 ], | 426 ], |
423 }], # OS=="linux" and linux_dump_symbols==1 | 427 }], # OS=="linux" and linux_dump_symbols==1 |
424 ], | 428 ], |
425 }], # internal_pdf | 429 }], # internal_pdf |
426 ], | 430 ], |
427 'dependencies': [ | 431 'dependencies': [ |
428 'chrome_resources.gyp:packed_extra_resources', | 432 'chrome_resources.gyp:packed_extra_resources', |
429 'chrome_resources.gyp:packed_resources', | 433 'chrome_resources.gyp:packed_resources', |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 'target_name': 'chrome_nacl_win64', | 601 'target_name': 'chrome_nacl_win64', |
598 'type': 'none', | 602 'type': 'none', |
599 'sources': [], | 603 'sources': [], |
600 }, | 604 }, |
601 ], | 605 ], |
602 }], | 606 }], |
603 ], | 607 ], |
604 }], | 608 }], |
605 ], | 609 ], |
606 } | 610 } |
OLD | NEW |