| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 8 'variables': { |
| 9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1101 ], | 1101 ], |
| 1102 }, | 1102 }, |
| 1103 { | 1103 { |
| 1104 # dylib for interposing Carbon calls in the plugin process. | 1104 # dylib for interposing Carbon calls in the plugin process. |
| 1105 'target_name': 'plugin_carbon_interpose', | 1105 'target_name': 'plugin_carbon_interpose', |
| 1106 'type': 'shared_library', | 1106 'type': 'shared_library', |
| 1107 'dependencies': [ | 1107 'dependencies': [ |
| 1108 'chrome_dll', | 1108 'chrome_dll', |
| 1109 ], | 1109 ], |
| 1110 'sources': [ | 1110 'sources': [ |
| 1111 'browser/plugin_carbon_interpose_mac.cc', | 1111 '../content/plugin/plugin_carbon_interpose_mac.cc', |
| 1112 ], | 1112 ], |
| 1113 'include_dirs': [ | 1113 'include_dirs': [ |
| 1114 '..', | 1114 '..', |
| 1115 ], | 1115 ], |
| 1116 'link_settings': { | 1116 'link_settings': { |
| 1117 'libraries': [ | 1117 'libraries': [ |
| 1118 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 1118 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
| 1119 ], | 1119 ], |
| 1120 }, | 1120 }, |
| 1121 'xcode_settings': { | 1121 'xcode_settings': { |
| (...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1719 'destination': '<(PRODUCT_DIR)/default_apps', | 1719 'destination': '<(PRODUCT_DIR)/default_apps', |
| 1720 'files': ['<@(default_apps_list)'] | 1720 'files': ['<@(default_apps_list)'] |
| 1721 }, | 1721 }, |
| 1722 ], | 1722 ], |
| 1723 }], | 1723 }], |
| 1724 ], | 1724 ], |
| 1725 }], # targets | 1725 }], # targets |
| 1726 }], # OS != "mac" | 1726 }], # OS != "mac" |
| 1727 ], # 'conditions' | 1727 ], # 'conditions' |
| 1728 } | 1728 } |
| OLD | NEW |