| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 # This target must not depend on static libraries, else the code in | 631 # This target must not depend on static libraries, else the code in |
| 632 # those libraries would appear twice in plugin processes: Once from | 632 # those libraries would appear twice in plugin processes: Once from |
| 633 # Chromium Framework, and once from this dylib. | 633 # Chromium Framework, and once from this dylib. |
| 634 'dependencies': [ | 634 'dependencies': [ |
| 635 'chrome_dll', | 635 'chrome_dll', |
| 636 ], | 636 ], |
| 637 'conditions': [ | 637 'conditions': [ |
| 638 ['component=="shared_library"', { | 638 ['component=="shared_library"', { |
| 639 'dependencies': [ | 639 'dependencies': [ |
| 640 '../content/content.gyp:content_plugin', | 640 '../content/content.gyp:content_plugin', |
| 641 '../webkit/glue/webkit_glue.gyp:glue', | |
| 642 ], | 641 ], |
| 643 'xcode_settings': { | 642 'xcode_settings': { |
| 644 'LD_RUNPATH_SEARCH_PATHS': [ | 643 'LD_RUNPATH_SEARCH_PATHS': [ |
| 645 # Get back from Chromium.app/Contents/Versions/V | 644 # Get back from Chromium.app/Contents/Versions/V |
| 646 '@loader_path/../../../..', | 645 '@loader_path/../../../..', |
| 647 ], | 646 ], |
| 648 }, | 647 }, |
| 649 }], | 648 }], |
| 650 ], | 649 ], |
| 651 'sources': [ | 650 'sources': [ |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 'sources': [ | 1101 'sources': [ |
| 1103 'service/cloud_print/print_system_dummy.cc', | 1102 'service/cloud_print/print_system_dummy.cc', |
| 1104 ], | 1103 ], |
| 1105 }], | 1104 }], |
| 1106 ], | 1105 ], |
| 1107 }, | 1106 }, |
| 1108 ], | 1107 ], |
| 1109 }], | 1108 }], |
| 1110 ], # 'conditions' | 1109 ], # 'conditions' |
| 1111 } | 1110 } |
| OLD | NEW |