| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 # GN version: //chrome:chrome_dll | 9 # GN version: //chrome:chrome_dll |
| 10 'target_name': 'chrome_dll', | 10 'target_name': 'chrome_dll', |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 'xcode_settings': { | 297 'xcode_settings': { |
| 298 # Define the order of symbols within the framework. This | 298 # Define the order of symbols within the framework. This |
| 299 # sets -order_file. | 299 # sets -order_file. |
| 300 'ORDER_FILE': 'app/framework.order', | 300 'ORDER_FILE': 'app/framework.order', |
| 301 }, | 301 }, |
| 302 'include_dirs': [ | 302 'include_dirs': [ |
| 303 '<(grit_out_dir)', | 303 '<(grit_out_dir)', |
| 304 ], | 304 ], |
| 305 }], | 305 }], |
| 306 # This step currently fails when using LTO. TODO(pcc): Re-enable. | 306 # This step currently fails when using LTO. TODO(pcc): Re-enable. |
| 307 ['OS=="mac" and use_lto==0 and component=="static_library"', { | 307 ['OS=="mac" and use_lto==0', { |
| 308 'postbuilds': [ | 308 'postbuilds': [ |
| 309 { | 309 { |
| 310 # This step causes an error to be raised if the .order file | 310 # This step causes an error to be raised if the .order file |
| 311 # does not account for all global text symbols. It | 311 # does not account for all global text symbols. It |
| 312 # validates the completeness of the .order file. | 312 # validates the completeness of the .order file. |
| 313 'postbuild_name': 'Verify global text symbol order', | 313 'postbuild_name': 'Verify global text symbol order', |
| 314 'variables': { | 314 'variables': { |
| 315 'verify_order_path': 'tools/build/mac/verify_order', | 315 'verify_order_path': 'tools/build/mac/verify_order', |
| 316 }, | 316 }, |
| 317 'action': [ | 317 'action': [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 'dependencies': [ | 379 'dependencies': [ |
| 380 '../pdf/pdf.gyp:pdf', | 380 '../pdf/pdf.gyp:pdf', |
| 381 ], | 381 ], |
| 382 }], | 382 }], |
| 383 ], | 383 ], |
| 384 }, # target chrome_child_dll | 384 }, # target chrome_child_dll |
| 385 ], | 385 ], |
| 386 }], | 386 }], |
| 387 ], | 387 ], |
| 388 } | 388 } |
| OLD | NEW |