| 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 # This file contains resources for the main Mac chromium bundle. | 5 # This file contains resources for the main Mac chromium bundle. |
| 6 { | 6 { |
| 7 # The main browser executable's name is <(mac_product_name). | 7 # The main browser executable's name is <(mac_product_name). |
| 8 # Certain things will get confused if two modules in the | 8 # Certain things will get confused if two modules in the |
| 9 # executable share the same name, so append " Framework" to the | 9 # executable share the same name, so append " Framework" to the |
| 10 # product_name used for the framework. This will result in | 10 # product_name used for the framework. This will result in |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 }], | 234 }], |
| 235 ['mac_breakpad==1', { | 235 ['mac_breakpad==1', { |
| 236 'variables': { | 236 'variables': { |
| 237 # A real .dSYM is needed for dump_syms to operate on. | 237 # A real .dSYM is needed for dump_syms to operate on. |
| 238 'mac_real_dsym': 1, | 238 'mac_real_dsym': 1, |
| 239 }, | 239 }, |
| 240 }], | 240 }], |
| 241 ['mac_breakpad_compiled_in==1', { | 241 ['mac_breakpad_compiled_in==1', { |
| 242 'dependencies': [ | 242 'dependencies': [ |
| 243 '../breakpad/breakpad.gyp:breakpad', | 243 '../breakpad/breakpad.gyp:breakpad', |
| 244 'app/policy/cloud_policy_codegen.gyp:policy', | 244 '../components/components.gyp:policy', |
| 245 ], | 245 ], |
| 246 'copies': [ | 246 'copies': [ |
| 247 { | 247 { |
| 248 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', | 248 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', |
| 249 'files': [ | 249 'files': [ |
| 250 '<(PRODUCT_DIR)/crash_inspector', | 250 '<(PRODUCT_DIR)/crash_inspector', |
| 251 '<(PRODUCT_DIR)/crash_report_sender.app' | 251 '<(PRODUCT_DIR)/crash_report_sender.app' |
| 252 ], | 252 ], |
| 253 }, | 253 }, |
| 254 ], | 254 ], |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 ['enable_webrtc==1 and libpeer_target_type!="static_library"', { | 303 ['enable_webrtc==1 and libpeer_target_type!="static_library"', { |
| 304 'copies': [{ | 304 'copies': [{ |
| 305 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', | 305 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', |
| 306 'files': [ | 306 'files': [ |
| 307 '<(PRODUCT_DIR)/libpeerconnection.so', | 307 '<(PRODUCT_DIR)/libpeerconnection.so', |
| 308 ], | 308 ], |
| 309 }], | 309 }], |
| 310 }], | 310 }], |
| 311 ], # conditions | 311 ], # conditions |
| 312 } | 312 } |
| OLD | NEW |