| 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 'variables': { | 5 'variables': { |
| 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', | 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', |
| 8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', | 8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', |
| 9 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 9 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 10 }, | 10 }, |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 # - Linux: chrome/installer/linux/internal/common/installer.include | 402 # - Linux: chrome/installer/linux/internal/common/installer.include |
| 403 # Ensure that the above scripts are updated when adding or removing | 403 # Ensure that the above scripts are updated when adding or removing |
| 404 # pak files. | 404 # pak files. |
| 405 # Copying files to the product directory is not needed on the Mac | 405 # Copying files to the product directory is not needed on the Mac |
| 406 # since the framework build phase will copy them into the framework | 406 # since the framework build phase will copy them into the framework |
| 407 # bundle directly. | 407 # bundle directly. |
| 408 'copies': [ | 408 'copies': [ |
| 409 { | 409 { |
| 410 'destination': '<(PRODUCT_DIR)', | 410 'destination': '<(PRODUCT_DIR)', |
| 411 'files': [ | 411 'files': [ |
| 412 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak' | |
| 413 ], | |
| 414 }, | |
| 415 { | |
| 416 'destination': '<(PRODUCT_DIR)', | |
| 417 'files': [ | |
| 418 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_100_percent.pak' | 412 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_100_percent.pak' |
| 419 ], | 413 ], |
| 420 }, | 414 }, |
| 421 { | 415 { |
| 422 'destination': '<(PRODUCT_DIR)/locales', | 416 'destination': '<(PRODUCT_DIR)/locales', |
| 423 'files': [ | 417 'files': [ |
| 424 '<!@pymod_do_main(repack_locales -o -p <(OS) -g <(grit_out_dir)
-s <(SHARED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))' | 418 '<!@pymod_do_main(repack_locales -o -p <(OS) -g <(grit_out_dir)
-s <(SHARED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))' |
| 425 ], | 419 ], |
| 426 }, | 420 }, |
| 427 { | 421 { |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 '<(generator_path)', | 501 '<(generator_path)', |
| 508 'credits', | 502 'credits', |
| 509 '<(about_credits_file)', | 503 '<(about_credits_file)', |
| 510 ], | 504 ], |
| 511 'message': 'Generating about:credits', | 505 'message': 'Generating about:credits', |
| 512 }, | 506 }, |
| 513 ], | 507 ], |
| 514 }, | 508 }, |
| 515 ], # targets | 509 ], # targets |
| 516 } | 510 } |
| OLD | NEW |