Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Side by Side Diff: chrome/chrome_dll.gypi

Issue 10024050: Metro/HiDPI: Move 1x icons into separate pak file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix hidpi flag Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 'app/theme/omnibox_http.pdf', 295 'app/theme/omnibox_http.pdf',
296 'app/theme/omnibox_https_invalid.pdf', 296 'app/theme/omnibox_https_invalid.pdf',
297 'app/theme/omnibox_https_valid.pdf', 297 'app/theme/omnibox_https_valid.pdf',
298 'app/theme/omnibox_https_warning.pdf', 298 'app/theme/omnibox_https_warning.pdf',
299 'app/theme/omnibox_search.pdf', 299 'app/theme/omnibox_search.pdf',
300 'app/theme/omnibox_tts.pdf', 300 'app/theme/omnibox_tts.pdf',
301 'app/theme/otr_icon.pdf', 301 'app/theme/otr_icon.pdf',
302 'app/theme/star.pdf', 302 'app/theme/star.pdf',
303 'app/theme/star_lit.pdf', 303 'app/theme/star_lit.pdf',
304 'browser/mac/install.sh', 304 'browser/mac/install.sh',
305 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak', 305 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak',
306 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', 306 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak',
307 '<(grit_out_dir)/theme_resources_standard.pak',
308 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resource s_standard.pak',
307 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR ED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))', 309 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR ED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))',
308 # Note: pseudo_locales are generated via the packed_resources 310 # Note: pseudo_locales are generated via the packed_resources
309 # dependency but not copied to the final target. See 311 # dependency but not copied to the final target. See
310 # common.gypi for more info. 312 # common.gypi for more info.
311 ], 313 ],
312 'mac_bundle_resources!': [ 314 'mac_bundle_resources!': [
313 'app/framework-Info.plist', 315 'app/framework-Info.plist',
314 ], 316 ],
315 'dependencies': [ 317 'dependencies': [
316 'app_mode_app', 318 'app_mode_app',
(...skipping 28 matching lines...) Expand all
345 'variables': { 347 'variables': {
346 'conditions': [ 348 'conditions': [
347 ['branding=="Chrome"', { 349 ['branding=="Chrome"', {
348 'theme_dir_name': 'google_chrome', 350 'theme_dir_name': 'google_chrome',
349 }, { # else: 'branding!="Chrome" 351 }, { # else: 'branding!="Chrome"
350 'theme_dir_name': 'chromium', 352 'theme_dir_name': 'chromium',
351 }], 353 }],
352 ], 354 ],
353 'repack_path': '../tools/grit/grit/format/repack.py', 355 'repack_path': '../tools/grit/grit/format/repack.py',
354 }, 356 },
355 'actions': [
356 {
357 'includes': ['chrome_repack_theme_resources_2x.gypi']
358 },
359 ],
360 'postbuilds': [ 357 'postbuilds': [
361 { 358 {
362 # This step causes an error to be raised if the .order file 359 # This step causes an error to be raised if the .order file
363 # does not account for all global text symbols. It 360 # does not account for all global text symbols. It
364 # validates the completeness of the .order file. 361 # validates the completeness of the .order file.
365 'postbuild_name': 'Verify global text symbol order', 362 'postbuild_name': 'Verify global text symbol order',
366 'variables': { 363 'variables': {
367 'verify_order_path': 'tools/build/mac/verify_order', 364 'verify_order_path': 'tools/build/mac/verify_order',
368 }, 365 },
369 'action': [ 366 'action': [
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Frameworks' 525 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Frameworks'
529 ], 526 ],
530 }, 527 },
531 ], 528 ],
532 }], # mac_keystone 529 }], # mac_keystone
533 ['internal_pdf', { 530 ['internal_pdf', {
534 'dependencies': [ 531 'dependencies': [
535 '../pdf/pdf.gyp:pdf', 532 '../pdf/pdf.gyp:pdf',
536 ], 533 ],
537 }], 534 }],
535 ['enable_hidpi==1', {
536 'mac_bundle_resources': [
537 '<(grit_out_dir)/theme_resources_2x.pak',
538 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_2x/ui_resources_ 2x.pak',
539 ],
540 }],
538 ], # conditions 541 ], # conditions
539 }], # OS=="mac" 542 }], # OS=="mac"
540 ], # conditions 543 ], # conditions
541 }, # target chrome_dll 544 }, # target chrome_dll
542 ], # targets 545 ], # targets
543 }], # OS=="mac" or OS=="win" 546 }], # OS=="mac" or OS=="win"
544 ], 547 ],
545 } 548 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698