OLD | NEW |
(Empty) | |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 'grit_base_dir': '<(SHARED_INTERMEDIATE_DIR)', |
| 9 'grit_out_dir': '<(grit_base_dir)/ios/chrome', |
| 10 'grit_defines': [ |
| 11 # TODO(lliabraa): Remove this whitelist. |
| 12 '-w', '<(DEPTH)/ios/build/grit_whitelist.txt', |
| 13 ], |
| 14 }, |
| 15 'targets': [ |
| 16 { |
| 17 'target_name': 'ios_theme_resources_gen', |
| 18 'type': 'none', |
| 19 'actions': [ |
| 20 { |
| 21 'action_name': 'ios_theme_resources', |
| 22 'variables': { |
| 23 'grit_grd_file': 'app/theme/ios_theme_resources.grd', |
| 24 }, |
| 25 'includes': [ '../../build/grit_action.gypi' ], |
| 26 }, |
| 27 ], |
| 28 'includes': [ '../../build/grit_target.gypi' ], |
| 29 # Override the exported include-dirs; ios_theme_resources.h should only be |
| 30 # referencable as ios/chrome/grit/, to allow DEPS-time checking of usage. |
| 31 'direct_dependent_settings': { |
| 32 'include_dirs': [ |
| 33 '<(grit_base_dir)', |
| 34 ], |
| 35 'include_dirs!': [ |
| 36 '<(grit_out_dir)', |
| 37 ], |
| 38 }, |
| 39 }, |
| 40 ], |
| 41 } |
| 42 |
OLD | NEW |