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