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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 'files': ['app/theme/chromium/product_logo_48.png'] | 135 'files': ['app/theme/chromium/product_logo_48.png'] |
136 }], | 136 }], |
137 ], | 137 ], |
138 }, | 138 }, |
139 ], | 139 ], |
140 }], | 140 }], |
141 ['toolkit_uses_gtk == 1', { | 141 ['toolkit_uses_gtk == 1', { |
142 'dependencies': [ | 142 'dependencies': [ |
143 # On Linux, link the dependencies (libraries) that make up actua
l | 143 # On Linux, link the dependencies (libraries) that make up actua
l |
144 # Chromium functionality directly into the executable. | 144 # Chromium functionality directly into the executable. |
145 '<@(chromium_browser_dependencies)', | 145 '<@(chromium_dependencies)', |
146 '<@(chromium_child_dependencies)', | |
147 # Needed for chrome_main.cc initialization of libraries. | 146 # Needed for chrome_main.cc initialization of libraries. |
148 '../build/linux/system.gyp:gtk', | 147 '../build/linux/system.gyp:gtk', |
149 # Needed to use the master_preferences functions | 148 # Needed to use the master_preferences functions |
150 'installer_util', | 149 'installer_util', |
151 ], | 150 ], |
152 }, { # else toolkit_uses_gtk == 1 | 151 }, { # else toolkit_uses_gtk == 1 |
153 'dependencies': [ | 152 'dependencies': [ |
154 # On Linux, link the dependencies (libraries) that make up actua
l | 153 # On Linux, link the dependencies (libraries) that make up actua
l |
155 # Chromium functionality directly into the executable. | 154 # Chromium functionality directly into the executable. |
156 '<@(chromium_browser_dependencies)', | 155 '<@(chromium_dependencies)', |
157 '<@(chromium_child_dependencies)', | |
158 # Needed for chrome_main.cc initialization of libraries. | 156 # Needed for chrome_main.cc initialization of libraries. |
159 '../build/linux/system.gyp:x11', | 157 '../build/linux/system.gyp:x11', |
160 '../build/linux/system.gyp:pangocairo', | 158 '../build/linux/system.gyp:pangocairo', |
161 '../build/linux/system.gyp:xext', | 159 '../build/linux/system.gyp:xext', |
162 # Needed to use the master_preferences functions | 160 # Needed to use the master_preferences functions |
163 'installer_util', | 161 'installer_util', |
164 ], | 162 ], |
165 }], | 163 }], |
166 ], | 164 ], |
167 'sources': [ | 165 'sources': [ |
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 'dependencies': [ | 623 'dependencies': [ |
626 'chrome_nacl_win64', | 624 'chrome_nacl_win64', |
627 ], | 625 ], |
628 }], | 626 }], |
629 ], | 627 ], |
630 }, | 628 }, |
631 ], | 629 ], |
632 }], | 630 }], |
633 ], | 631 ], |
634 } | 632 } |
OLD | NEW |