| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui', | 8 'grit_base_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 ], | 31 ], |
| 32 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
| 33 'include_dirs': [ | 33 'include_dirs': [ |
| 34 '<(grit_base_out_dir)/app_locale_settings', | 34 '<(grit_base_out_dir)/app_locale_settings', |
| 35 '<(grit_base_out_dir)/ui_strings', | 35 '<(grit_base_out_dir)/ui_strings', |
| 36 ], | 36 ], |
| 37 }, | 37 }, |
| 38 }, | 38 }, |
| 39 ], | 39 ], |
| 40 'conditions': [ | 40 'conditions': [ |
| 41 ['OS != "mac"', { | 41 ['os_posix == 1 and OS != "mac"', { |
| 42 'targets': [{ | 42 'targets': [{ |
| 43 'target_name': 'ui_unittest_strings', | 43 'target_name': 'ui_unittest_strings', |
| 44 'type': 'none', | 44 'type': 'none', |
| 45 'dependencies': [ | 45 'dependencies': [ |
| 46 'ui_strings', | 46 'ui_strings', |
| 47 ], | 47 ], |
| 48 'variables': { | 48 'variables': { |
| 49 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', | 49 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', |
| 50 'conditions': [ | 50 'conditions': [ |
| 51 ['OS == "ios"', { | 51 ['OS == "ios"', { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 80 'destination': '<(PRODUCT_DIR)/ui_unittests_strings', | 80 'destination': '<(PRODUCT_DIR)/ui_unittests_strings', |
| 81 'files': [ | 81 'files': [ |
| 82 '<(grit_base_out_dir)/ui_resources/ui_resources_100_percent.pak', | 82 '<(grit_base_out_dir)/ui_resources/ui_resources_100_percent.pak', |
| 83 ], | 83 ], |
| 84 }, | 84 }, |
| 85 ], | 85 ], |
| 86 }], | 86 }], |
| 87 }], | 87 }], |
| 88 ], | 88 ], |
| 89 } | 89 } |
| OLD | NEW |