| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
| 10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
| (...skipping 3221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3232 # (e.g. "Chromium", "Chrome") | 3232 # (e.g. "Chromium", "Chrome") |
| 3233 'conditions': [ | 3233 'conditions': [ |
| 3234 ['branding=="Chrome"', { | 3234 ['branding=="Chrome"', { |
| 3235 'mac_bundle_resources': [ | 3235 'mac_bundle_resources': [ |
| 3236 'app/theme/google_chrome/app.icns', | 3236 'app/theme/google_chrome/app.icns', |
| 3237 'app/theme/google_chrome/document.icns', | 3237 'app/theme/google_chrome/document.icns', |
| 3238 ], | 3238 ], |
| 3239 'copies': [ | 3239 'copies': [ |
| 3240 { | 3240 { |
| 3241 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', | 3241 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', |
| 3242 # TODO(ajwong): This, and the parallel chromium stanza below |
| 3243 # really should find a way to share file paths with |
| 3244 # ffmpeg.gyp so they don't diverge. |
| 3242 'files': [ | 3245 'files': [ |
| 3243 '../third_party/ffmpeg/binaries/chrome/libavcodec.52.dylib', | 3246 '../third_party/ffmpeg/binaries/chrome/mac/ia32/libavcodec.5
2.dylib', |
| 3244 '../third_party/ffmpeg/binaries/chrome/libavformat.52.dylib'
, | 3247 '../third_party/ffmpeg/binaries/chrome/mac/ia32/libavformat.
52.dylib', |
| 3245 '../third_party/ffmpeg/binaries/chrome/libavutil.50.dylib', | 3248 '../third_party/ffmpeg/binaries/chrome/mac/ia32/libavutil.50
.dylib', |
| 3246 ], | 3249 ], |
| 3247 }, | 3250 }, |
| 3248 ], | 3251 ], |
| 3249 }, { # else: 'branding!="Chrome" | 3252 }, { # else: 'branding!="Chrome" |
| 3250 'mac_bundle_resources': [ | 3253 'mac_bundle_resources': [ |
| 3251 'app/theme/chromium/app.icns', | 3254 'app/theme/chromium/app.icns', |
| 3252 'app/theme/chromium/document.icns', | 3255 'app/theme/chromium/document.icns', |
| 3253 ], | 3256 ], |
| 3254 'copies': [ | 3257 'copies': [ |
| 3255 { | 3258 { |
| 3256 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', | 3259 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', |
| 3257 'files': [ | 3260 'files': [ |
| 3258 '../third_party/ffmpeg/binaries/chromium/libavcodec.52.dylib
', | 3261 '../third_party/ffmpeg/binaries/chromium/mac/ia32/libavcodec
.52.dylib', |
| 3259 '../third_party/ffmpeg/binaries/chromium/libavformat.52.dyli
b', | 3262 '../third_party/ffmpeg/binaries/chromium/mac/ia32/libavforma
t.52.dylib', |
| 3260 '../third_party/ffmpeg/binaries/chromium/libavutil.50.dylib'
, | 3263 '../third_party/ffmpeg/binaries/chromium/mac/ia32/libavutil.
50.dylib', |
| 3261 ], | 3264 ], |
| 3262 }, | 3265 }, |
| 3263 ], | 3266 ], |
| 3264 }], | 3267 }], |
| 3265 ['mac_breakpad==1', { | 3268 ['mac_breakpad==1', { |
| 3266 'variables': { | 3269 'variables': { |
| 3267 # A real .dSYM is needed for dump_syms to operate on. | 3270 # A real .dSYM is needed for dump_syms to operate on. |
| 3268 'mac_real_dsym': 1, | 3271 'mac_real_dsym': 1, |
| 3269 }, | 3272 }, |
| 3270 'dependencies': [ | 3273 'dependencies': [ |
| (...skipping 3318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6589 'dependencies': [ | 6592 'dependencies': [ |
| 6590 '../third_party/pthreads-win32/pthreads.gyp:pthreads', | 6593 '../third_party/pthreads-win32/pthreads.gyp:pthreads', |
| 6591 ], | 6594 ], |
| 6592 }], | 6595 }], |
| 6593 ], | 6596 ], |
| 6594 }, | 6597 }, |
| 6595 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 | 6598 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 |
| 6596 }], | 6599 }], |
| 6597 ], # 'conditions' | 6600 ], # 'conditions' |
| 6598 } | 6601 } |
| OLD | NEW |