| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'grit_base_dir': '<(SHARED_INTERMEDIATE_DIR)', | 8 'grit_base_dir': '<(SHARED_INTERMEDIATE_DIR)', |
| 9 'grit_out_dir': '<(grit_base_dir)/ios/today_extension', | 9 'grit_out_dir': '<(grit_base_dir)/ios/today_extension', |
| 10 }, | 10 }, |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'ios_today_extension_resources', | 13 'target_name': 'ios_today_extension_resources', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'ios_today_extension_strings_gen', | 16 'ios_today_extension_strings_gen', |
| 17 ], | 17 ], |
| 18 }, | 18 }, |
| 19 { | 19 { |
| 20 'target_name': 'ios_today_extension_strings_gen', | 20 'target_name': 'ios_today_extension_strings_gen', |
| 21 'type': 'none', | 21 'type': 'none', |
| 22 'hard_dependency': 1, | 22 'hard_dependency': 1, |
| 23 'actions': [ | 23 'actions': [ |
| 24 { | 24 { |
| 25 'action_name': 'generate_ios_today_extension_strings', | 25 'action_name': 'generate_ios_today_extension_strings', |
| 26 'variables': { | 26 'variables': { |
| 27 'grit_whitelist': '', | |
| 28 'grit_grd_file': 'today_extension/strings/ios_today_extension_string
s.grd', | 27 'grit_grd_file': 'today_extension/strings/ios_today_extension_string
s.grd', |
| 29 }, | 28 }, |
| 30 'includes': [ '../../build/grit_action.gypi' ], | 29 'includes': [ '../../build/grit_action.gypi' ], |
| 31 }, | 30 }, |
| 32 ], | 31 ], |
| 33 'includes': [ '../../build/grit_target.gypi' ], | 32 'includes': [ '../../build/grit_target.gypi' ], |
| 34 # Override the exported include-dirs; ios/chrome/grit/ios_*strings.h | 33 # Override the exported include-dirs; ios/chrome/grit/ios_*strings.h |
| 35 # should only be referenceable as ios/chrome/grit to allow DEPS-time | 34 # should only be referenceable as ios/chrome/grit to allow DEPS-time |
| 36 # checking of usage. | 35 # checking of usage. |
| 37 'direct_dependent_settings': { | 36 'direct_dependent_settings': { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 '-s', '<(SHARED_INTERMEDIATE_DIR)', | 75 '-s', '<(SHARED_INTERMEDIATE_DIR)', |
| 77 '-b', '<(branding_path_component)', | 76 '-b', '<(branding_path_component)', |
| 78 '<@(locales)', | 77 '<@(locales)', |
| 79 ], | 78 ], |
| 80 }, | 79 }, |
| 81 ], | 80 ], |
| 82 }, | 81 }, |
| 83 ], | 82 ], |
| 84 } | 83 } |
| 85 | 84 |
| OLD | NEW |