| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
| 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 7 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 7 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 }, | 93 }, |
| 94 'includes': [ '../build/grit_action.gypi' ], | 94 'includes': [ '../build/grit_action.gypi' ], |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 'action_name': 'renderer_resources', | 97 'action_name': 'renderer_resources', |
| 98 'variables': { | 98 'variables': { |
| 99 'grit_grd_file': 'renderer/renderer_resources.grd', | 99 'grit_grd_file': 'renderer/renderer_resources.grd', |
| 100 }, | 100 }, |
| 101 'includes': [ '../build/grit_action.gypi' ], | 101 'includes': [ '../build/grit_action.gypi' ], |
| 102 }, | 102 }, |
| 103 { |
| 104 'action_name': 'extensions_api_resources', |
| 105 'variables': { |
| 106 'grit_grd_file': 'common/extensions_api_resources.grd', |
| 107 }, |
| 108 'includes': [ '../build/grit_action.gypi' ], |
| 109 } |
| 103 ], | 110 ], |
| 104 'includes': [ '../build/grit_target.gypi' ], | 111 'includes': [ '../build/grit_target.gypi' ], |
| 105 }, | 112 }, |
| 106 { | 113 { |
| 107 # TODO(mark): It would be better if each static library that needed | 114 # TODO(mark): It would be better if each static library that needed |
| 108 # to run grit would list its own .grd files, but unfortunately some | 115 # to run grit would list its own .grd files, but unfortunately some |
| 109 # of the static libraries currently have circular dependencies among | 116 # of the static libraries currently have circular dependencies among |
| 110 # generated headers. | 117 # generated headers. |
| 111 'target_name': 'chrome_strings', | 118 'target_name': 'chrome_strings', |
| 112 'type': 'none', | 119 'type': 'none', |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 'files': ['<@(default_apps_list)'] | 322 'files': ['<@(default_apps_list)'] |
| 316 }, | 323 }, |
| 317 ], | 324 ], |
| 318 }], | 325 }], |
| 319 ], # conditions | 326 ], # conditions |
| 320 }], # end OS != "mac" | 327 }], # end OS != "mac" |
| 321 ], # conditions | 328 ], # conditions |
| 322 }, | 329 }, |
| 323 ], # targets | 330 ], # targets |
| 324 } | 331 } |
| OLD | NEW |