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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 'grit_grd_file': 'renderer/renderer_resources.grd', | 107 'grit_grd_file': 'renderer/renderer_resources.grd', |
108 }, | 108 }, |
109 'includes': [ '../build/grit_action.gypi' ], | 109 'includes': [ '../build/grit_action.gypi' ], |
110 }, | 110 }, |
111 { | 111 { |
112 'action_name': 'extensions_api_resources', | 112 'action_name': 'extensions_api_resources', |
113 'variables': { | 113 'variables': { |
114 'grit_grd_file': 'common/extensions_api_resources.grd', | 114 'grit_grd_file': 'common/extensions_api_resources.grd', |
115 }, | 115 }, |
116 'includes': [ '../build/grit_action.gypi' ], | 116 'includes': [ '../build/grit_action.gypi' ], |
117 } | 117 }, |
| 118 { |
| 119 'action_name': 'tracing_resources', |
| 120 'variables': { |
| 121 'grit_grd_file': '../third_party/trace-viewer/src/tracing.grd', |
| 122 }, |
| 123 'includes': [ '../build/grit_action.gypi' ], |
| 124 }, |
| 125 |
118 ], | 126 ], |
119 'includes': [ '../build/grit_target.gypi' ], | 127 'includes': [ '../build/grit_target.gypi' ], |
120 }, | 128 }, |
121 { | 129 { |
122 # TODO(mark): It would be better if each static library that needed | 130 # TODO(mark): It would be better if each static library that needed |
123 # to run grit would list its own .grd files, but unfortunately some | 131 # to run grit would list its own .grd files, but unfortunately some |
124 # of the static libraries currently have circular dependencies among | 132 # of the static libraries currently have circular dependencies among |
125 # generated headers. | 133 # generated headers. |
126 'target_name': 'chrome_strings', | 134 'target_name': 'chrome_strings', |
127 'type': 'none', | 135 'type': 'none', |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 'files': ['<@(default_apps_list)'] | 407 'files': ['<@(default_apps_list)'] |
400 }, | 408 }, |
401 ], | 409 ], |
402 }], | 410 }], |
403 ], # conditions | 411 ], # conditions |
404 }], # end OS != "mac" | 412 }], # end OS != "mac" |
405 ], # conditions | 413 ], # conditions |
406 }, | 414 }, |
407 ], # targets | 415 ], # targets |
408 } | 416 } |
OLD | NEW |