| 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 26 matching lines...) Expand all Loading... |
| 37 # be necessary to list app-Info.plist once, not the three times it is | 37 # be necessary to list app-Info.plist once, not the three times it is |
| 38 # listed here. | 38 # listed here. |
| 39 'mac_bundle_resources!': [ | 39 'mac_bundle_resources!': [ |
| 40 'app/app-Info.plist', | 40 'app/app-Info.plist', |
| 41 ], | 41 ], |
| 42 'xcode_settings': { | 42 'xcode_settings': { |
| 43 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', | 43 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', |
| 44 'INFOPLIST_FILE': 'app/app-Info.plist', | 44 'INFOPLIST_FILE': 'app/app-Info.plist', |
| 45 }, | 45 }, |
| 46 'conditions': [ | 46 'conditions': [ |
| 47 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { |
| 48 'dependencies' : [ |
| 49 '../tools/cygprofile/cygprofile.gyp:cygprofile', |
| 50 ], |
| 51 }], |
| 47 ['order_text_section!=""', { | 52 ['order_text_section!=""', { |
| 48 'target_conditions' : [ | 53 'target_conditions' : [ |
| 49 ['_toolset=="target"', { | 54 ['_toolset=="target"', { |
| 50 'ldflags': [ | 55 'ldflags': [ |
| 51 '-Wl,-section-ordering-file=<(order_text_section)' ], | 56 '-Wl,-section-ordering-file=<(order_text_section)' ], |
| 52 }], | 57 }], |
| 53 ] | 58 ] |
| 54 }], | 59 }], |
| 55 ['OS == "android"', { | 60 ['OS == "android"', { |
| 56 # Don't put the 'chrome' target in 'all' on android | 61 # Don't put the 'chrome' target in 'all' on android |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 'configurations': { | 561 'configurations': { |
| 557 'Common_Base': { | 562 'Common_Base': { |
| 558 'msvs_target_platform': 'x64', | 563 'msvs_target_platform': 'x64', |
| 559 }, | 564 }, |
| 560 }, | 565 }, |
| 561 }, | 566 }, |
| 562 ], | 567 ], |
| 563 }], | 568 }], |
| 564 ], | 569 ], |
| 565 } | 570 } |
| OLD | NEW |