| 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 # This location is for the Windows and Linux builds. For | 439 # This location is for the Windows and Linux builds. For |
| 440 # Windows, the chrome.release file ensures that these files | 440 # Windows, the chrome.release file ensures that these files |
| 441 # are copied into the installer. Note that we have a separate | 441 # are copied into the installer. Note that we have a separate |
| 442 # section in chrome_dll.gyp to copy these files for Mac, as it | 442 # section in chrome_dll.gyp to copy these files for Mac, as it |
| 443 # needs to be dropped inside the framework. | 443 # needs to be dropped inside the framework. |
| 444 'destination': '<(PRODUCT_DIR)/default_apps', | 444 'destination': '<(PRODUCT_DIR)/default_apps', |
| 445 'files': ['<@(default_apps_list)'] | 445 'files': ['<@(default_apps_list)'] |
| 446 }, | 446 }, |
| 447 ], | 447 ], |
| 448 }], | 448 }], |
| 449 ['enable_hidpi == 1 and OS!="win"', { | 449 ['enable_hidpi == 1', { |
| 450 'copies': [ | 450 'copies': [ |
| 451 { | 451 { |
| 452 'destination': '<(PRODUCT_DIR)', | 452 'destination': '<(PRODUCT_DIR)', |
| 453 'files': [ | 453 'files': [ |
| 454 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_200_percent.pak', | 454 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_200_percent.pak', |
| 455 ], | 455 ], |
| 456 }, | 456 }, |
| 457 ], | 457 ], |
| 458 }], | 458 }], |
| 459 ], # conditions | 459 ], # conditions |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 '<(generator_path)', | 498 '<(generator_path)', |
| 499 'credits', | 499 'credits', |
| 500 '<(about_credits_file)', | 500 '<(about_credits_file)', |
| 501 ], | 501 ], |
| 502 'message': 'Generating about:credits', | 502 'message': 'Generating about:credits', |
| 503 }, | 503 }, |
| 504 ], | 504 ], |
| 505 }, | 505 }, |
| 506 ], # targets | 506 ], # targets |
| 507 } | 507 } |
| OLD | NEW |