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': 'none', | 9 'type': 'none', |
10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'xcode_settings': { | 83 'xcode_settings': { |
84 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', | 84 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', |
85 'INFOPLIST_FILE': 'app/app-Info.plist', | 85 'INFOPLIST_FILE': 'app/app-Info.plist', |
86 }, | 86 }, |
87 'conditions': [ | 87 'conditions': [ |
88 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { | 88 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { |
89 'dependencies' : [ | 89 'dependencies' : [ |
90 '../tools/cygprofile/cygprofile.gyp:cygprofile', | 90 '../tools/cygprofile/cygprofile.gyp:cygprofile', |
91 ], | 91 ], |
92 }], | 92 }], |
93 ['asan==1', { | |
94 'xcode_settings': { | |
95 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', | |
96 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', | |
97 }, | |
98 }], | |
99 ['order_text_section!=""', { | 93 ['order_text_section!=""', { |
100 'target_conditions' : [ | 94 'target_conditions' : [ |
101 ['_toolset=="target"', { | 95 ['_toolset=="target"', { |
102 'ldflags': [ | 96 'ldflags': [ |
103 '-Wl,-section-ordering-file=<(order_text_section)' ], | 97 '-Wl,-section-ordering-file=<(order_text_section)' ], |
104 }], | 98 }], |
105 ] | 99 ] |
106 }], | 100 }], |
107 ['OS == "android"', { | 101 ['OS == "android"', { |
108 # Don't put the 'chrome' target in 'all' on android | 102 # Don't put the 'chrome' target in 'all' on android |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 'dependencies': [ | 686 'dependencies': [ |
693 'chrome_nacl_win64', | 687 'chrome_nacl_win64', |
694 ], | 688 ], |
695 }], | 689 }], |
696 ], | 690 ], |
697 }, | 691 }, |
698 ], | 692 ], |
699 }], | 693 }], |
700 ], | 694 ], |
701 } | 695 } |
OLD | NEW |