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 3177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3188 ['OS=="linux" and (toolkit_views==1 or chromeos==1)', { | 3188 ['OS=="linux" and (toolkit_views==1 or chromeos==1)', { |
3189 'dependencies': [ | 3189 'dependencies': [ |
3190 '../views/views.gyp:views', | 3190 '../views/views.gyp:views', |
3191 ], | 3191 ], |
3192 }], | 3192 }], |
3193 ['OS=="mac"', { | 3193 ['OS=="mac"', { |
3194 # 'branding' is a variable defined in common.gypi | 3194 # 'branding' is a variable defined in common.gypi |
3195 # (e.g. "Chromium", "Chrome") | 3195 # (e.g. "Chromium", "Chrome") |
3196 'conditions': [ | 3196 'conditions': [ |
3197 ['branding=="Chrome"', { | 3197 ['branding=="Chrome"', { |
3198 'mac_bundle_resources': ['app/theme/google_chrome/app.icns'], | 3198 'mac_bundle_resources': [ |
| 3199 'app/theme/google_chrome/app.icns', |
| 3200 'app/theme/google_chrome/document.icns', |
| 3201 ], |
3199 'copies': [ | 3202 'copies': [ |
3200 { | 3203 { |
3201 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', | 3204 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', |
3202 'files': [ | 3205 'files': [ |
3203 '../third_party/ffmpeg/binaries/chrome/libavcodec.52.dylib', | 3206 '../third_party/ffmpeg/binaries/chrome/libavcodec.52.dylib', |
3204 '../third_party/ffmpeg/binaries/chrome/libavformat.52.dylib'
, | 3207 '../third_party/ffmpeg/binaries/chrome/libavformat.52.dylib'
, |
3205 '../third_party/ffmpeg/binaries/chrome/libavutil.50.dylib', | 3208 '../third_party/ffmpeg/binaries/chrome/libavutil.50.dylib', |
3206 ], | 3209 ], |
3207 }, | 3210 }, |
3208 ], | 3211 ], |
3209 }, { # else: 'branding!="Chrome" | 3212 }, { # else: 'branding!="Chrome" |
3210 'mac_bundle_resources': ['app/theme/chromium/app.icns'], | 3213 'mac_bundle_resources': [ |
| 3214 'app/theme/chromium/app.icns', |
| 3215 'app/theme/chromium/document.icns', |
| 3216 ], |
3211 'copies': [ | 3217 'copies': [ |
3212 { | 3218 { |
3213 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', | 3219 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Content
s/MacOS', |
3214 'files': [ | 3220 'files': [ |
3215 '../third_party/ffmpeg/binaries/chromium/libavcodec.52.dylib
', | 3221 '../third_party/ffmpeg/binaries/chromium/libavcodec.52.dylib
', |
3216 '../third_party/ffmpeg/binaries/chromium/libavformat.52.dyli
b', | 3222 '../third_party/ffmpeg/binaries/chromium/libavformat.52.dyli
b', |
3217 '../third_party/ffmpeg/binaries/chromium/libavutil.50.dylib'
, | 3223 '../third_party/ffmpeg/binaries/chromium/libavutil.50.dylib'
, |
3218 ], | 3224 ], |
3219 }, | 3225 }, |
3220 ], | 3226 ], |
(...skipping 2882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6103 # Use outputs of this action as inputs for the main target build. | 6109 # Use outputs of this action as inputs for the main target build. |
6104 # Seems as a misnomer but makes this happy on Linux (scons). | 6110 # Seems as a misnomer but makes this happy on Linux (scons). |
6105 'process_outputs_as_sources': 1, | 6111 'process_outputs_as_sources': 1, |
6106 }, | 6112 }, |
6107 ], # 'actions' | 6113 ], # 'actions' |
6108 }, | 6114 }, |
6109 ] | 6115 ] |
6110 }], | 6116 }], |
6111 ], # 'conditions' | 6117 ], # 'conditions' |
6112 } | 6118 } |
OLD | NEW |