Commit 4b7ca352 authored by rouslan@chromium.org's avatar rouslan@chromium.org

Do not update libaddressinput strings on 'gclient runhooks'.

This patch stops updating chrome/app/address_input_strings.grdp when
running 'gclient runhooks'. This is necessary to enable checking in a
static version of chrome/app/address_input_strings.grdp.
https://codereview.chromium.org/337163002/ needs this patch to land.

BUG=327046

Review URL: https://codereview.chromium.org/341533004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278036 0039d316-1c4b-4281-b951-d872f2087c98
parent 7de6fe02
......@@ -66,7 +66,6 @@ v8.log
/chrome/gles2_conform_test_run.xml
/chrome/tab_capture_performance_tests_run.xml
/chrome/telemetry_gpu_test_run.xml
/chrome/app/address_input_strings.grdp
/chrome/app/theme/default_100_percent/google_chrome
/chrome/app/theme/default_200_percent/google_chrome
/chrome/app/theme/google_chrome
......
......@@ -755,15 +755,6 @@ hooks = [
"-s", "src/build/linux/bin/eu-strip.sha1",
],
},
# Pull libaddressinput strings to work better with translation tools.
{
"name": "libaddressinput-strings",
"pattern": ".",
"action": [
"python",
"src/third_party/libaddressinput/chromium/tools/update-strings.py",
],
},
{
"name": "drmemory",
"pattern": ".",
......
......@@ -115,11 +115,6 @@ def calc_inputs(locale):
inputs.append(os.path.join(SHARE_INT_DIR, 'third_party', 'libaddressinput',
'libaddressinput_strings_%s.pak' % locale))
#e.g. '<(SHARED_INTERMEDIATE_DIR)/grit/libaddressinput/
# address_input_strings_da.pak',
inputs.append(os.path.join(SHARE_INT_DIR, 'grit', 'libaddressinput',
'address_input_strings_%s.pak' % locale))
#e.g. '<(grit_out_dir)/google_chrome_strings_da.pak'
# or
# '<(grit_out_dir)/chromium_strings_da.pak'
......
......@@ -41,27 +41,6 @@
'../../build/grit_target.gypi',
],
},
{
'target_name': 'libaddressinput_updated_strings',
'type': 'none',
'variables': {
'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/grit/libaddressinput/',
},
'actions': [
{
'action_name': 'libaddressinput_updated_strings',
'variables': {
'grit_grd_file': '../../chrome/app/address_input_strings.grd',
},
'includes': [
'../../build/grit_action.gypi',
],
},
],
'includes': [
'../../build/grit_target.gypi',
],
},
# This target provides basic functionality which is cooked into the build.
{ 'target_name': 'libaddressinput_util',
'type': 'static_library',
......@@ -150,7 +129,6 @@
],
'dependencies': [
'libaddressinput_strings',
'libaddressinput_updated_strings',
'libaddressinput_util',
'<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/base/base.gyp:base_i18n',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment