summaryrefslogtreecommitdiffstats
path: root/chrome/chrome_repack_locales.gypi
Commit message (Collapse)AuthorAgeFilesLines
* Fix ui_unittests building with enable_autofill_dialog=0jiangj@opera.com2014-05-131-2/+3
| | | | | | Review URL: https://codereview.chromium.org/178193032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270107 0039d316-1c4b-4281-b951-d872f2087c98
* Add whitelist support for grit repack steps.aurimas@chromium.org2014-04-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | -Adds new repack_options variables -Updates pragma to output numeric_id instead of resource_id -Updates find_used_resources.py to filter for numeric_id To use the existing system you need to do following steps: 1. Remove out directory (we need to do a clean build) 2. Append " enable_resource_whitelist_generation=1" to GYP_DEFINES 3. Run gyp 4. Build your target (e.g. chrome_shell_apk) saving output to a file (e.g. build.txt) 5. cat build.txt | tools/resources/find_used_resources.py > whitelist.txt 6. Append " repack_options='--whitelist /path/to/whitelist.txt'" 7. Run gyp 8. Build your target again. 9. ??? 10. Profit!!! BUG=338759 Review URL: https://codereview.chromium.org/216233012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261611 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up repack.py and repack_locale.py usage.aurimas@google.com2014-03-281-10/+11
| | | | | | | | | | | | | | | | - Creates repack_pack.gypi action - Updates all the call-sites of repack.py - Removes chrome_repack_pseudo_locales.gypi to instead use chrome_repack_locales.gypi - Remove unused repack_locales_cmd list BUG=338759 R=tfarina@chromium.org, thakis@chromium.org TBR=asargent@chromium.org, benm@chromium.org, blundell@chromium.org Review URL: https://codereview.chromium.org/216013003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260279 0039d316-1c4b-4281-b951-d872f2087c98
* Only include ash_strings if use_ash==1.aurimas@chromium.org2014-01-161-1/+2
| | | | | | | | | | | ash_strings where included in Android build and none of them are actually used. Restrict the include to only ash builds. BUG=none Review URL: https://codereview.chromium.org/136793004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245085 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for extra input files to repack_locales.py.msarda@chromium.org2012-10-311-3/+6
| | | | | | | | | | | | | | | Generating the Chromium resources for iOS needs to run the repack_locale.py on other grd files than the ones hard coded in repack_locales.py. This CL adds support to repack extra input files by passing them with argument "-e <resource_file>" on its command line. Use optparse to parse command line arguments in repack_locales.py to allow the user to pass multiple extra input files arguments (multiple "-e" arguments). Review URL: https://chromiumcodereview.appspot.com/11336010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165130 0039d316-1c4b-4281-b951-d872f2087c98
* Adding OS flag for cross-compiling for Android.aurimas@chromium.org2012-10-131-0/+1
| | | | | | | | | Adding OS flag for cross-compiling for Android. Review URL: https://chromiumcodereview.appspot.com/11085088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161771 0039d316-1c4b-4281-b951-d872f2087c98
* Allow "cross-compiling" with GRITnewt@chromium.org2012-08-011-3/+3
| | | | | | | | | | | | | This adds an explicit "platform" option to repack_locales.py, so resources for one platform (e.g. Android) can be compiled on another (e.g. Linux). BUG=136951 Review URL: https://chromiumcodereview.appspot.com/10830085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149488 0039d316-1c4b-4281-b951-d872f2087c98
* Introduces chromium_resources.gyp to factor out Chrome resource generationdhollowa@chromium.org2011-11-031-0/+30
| | | | | | | | | | | | | | | | | | | | 1. Factors out Chrome/Chromium resource generation into a separate chrome_resources.gyp file. 2. Eliminates repetition between Mac and other platforms. 3. Breaks long "repack" actions out into separate files for greater readability. 4. Eliminates circular dependencies in the Aura shell, the Views components, and the compositor when utilizing Chrome resources. BUG=none TEST=try bots run gyps and build correctly. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=107967 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=108466 Review URL: http://codereview.chromium.org/8425002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108517 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 108466 - Introduces chromium_resources.gyp to factor out Chrome ↵dhollowa@chromium.org2011-11-031-30/+0
| | | | | | | | | | | | | | | | | | | | | | | resource generation 1. Factors out Chrome/Chromium resource generation into a separate chrome_resources.gyp file. 2. Eliminates repetition between Mac and other platforms. 3. Breaks long "repack" actions out into separate files for greater readability. 4. Eliminates circular dependencies in the Aura shell, the Views components, and the compositor when utilizing Chrome resources. BUG=none TEST=try bots run gyps and build correctly. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=107967 Review URL: http://codereview.chromium.org/8425002 TBR=dhollowa@chromium.org Review URL: http://codereview.chromium.org/8448001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108468 0039d316-1c4b-4281-b951-d872f2087c98
* Introduces chromium_resources.gyp to factor out Chrome resource generationdhollowa@chromium.org2011-11-031-0/+30
| | | | | | | | | | | | | | | | | | 1. Factors out Chrome/Chromium resource generation into a separate chrome_resources.gyp file. 2. Eliminates repetition between Mac and other platforms. 3. Breaks long "repack" actions out into separate files for greater readability. 4. Eliminates circular dependencies in the Aura shell, the Views components, and the compositor when utilizing Chrome resources. BUG=none TEST=try bots run gyps and build correctly. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=107967 Review URL: http://codereview.chromium.org/8425002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108466 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 107967 - Introduces chromium_resources.gyp to factor out Chrome ↵dhollowa@chromium.org2011-10-311-30/+0
| | | | | | | | | | | | | | | | | | | | | resource generation 1. Factors out Chrome/Chromium resource generation into a separate chrome_resources.gyp file. 2. Eliminates repetition between Mac and other platforms. 3. Breaks long "repack" actions out into separate files for greater readability. 4. Eliminates circular dependencies in the Aura shell, the Views components, and the compositor when utilizing Chrome resources. BUG=none TEST=try bots run gyps and build correctly. Review URL: http://codereview.chromium.org/8425002 TBR=dhollowa@chromium.org Review URL: http://codereview.chromium.org/8430011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107984 0039d316-1c4b-4281-b951-d872f2087c98
* Introduces chromium_resources.gyp to factor out Chrome resource generationdhollowa@chromium.org2011-10-311-0/+30
1. Factors out Chrome/Chromium resource generation into a separate chrome_resources.gyp file. 2. Eliminates repetition between Mac and other platforms. 3. Breaks long "repack" actions out into separate files for greater readability. 4. Eliminates circular dependencies in the Aura shell, the Views components, and the compositor when utilizing Chrome resources. BUG=none TEST=try bots run gyps and build correctly. Review URL: http://codereview.chromium.org/8425002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107967 0039d316-1c4b-4281-b951-d872f2087c98