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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 { | 62 { |
63 'action_name': 'devtools_discovery_page_resources', | 63 'action_name': 'devtools_discovery_page_resources', |
64 'variables': { | 64 'variables': { |
65 'grit_grd_file': | 65 'grit_grd_file': |
66 'browser/debugger/frontend/devtools_discovery_page_resources.grd'
, | 66 'browser/debugger/frontend/devtools_discovery_page_resources.grd'
, |
67 }, | 67 }, |
68 'includes': [ '../build/grit_action.gypi' ] | 68 'includes': [ '../build/grit_action.gypi' ] |
69 }, | 69 }, |
70 ], | 70 ], |
71 'includes': [ '../build/grit_target.gypi' ], | 71 'includes': [ '../build/grit_target.gypi' ], |
| 72 'copies': [ |
| 73 { |
| 74 'destination': '<(PRODUCT_DIR)/resources/extension/analytics', |
| 75 'files': [ |
| 76 'browser/resources/extension_resource/analytics/ga.js', |
| 77 ], |
| 78 }, |
| 79 ] |
72 }, | 80 }, |
73 { | 81 { |
74 # TODO(mark): It would be better if each static library that needed | 82 # TODO(mark): It would be better if each static library that needed |
75 # to run grit would list its own .grd files, but unfortunately some | 83 # to run grit would list its own .grd files, but unfortunately some |
76 # of the static libraries currently have circular dependencies among | 84 # of the static libraries currently have circular dependencies among |
77 # generated headers. | 85 # generated headers. |
78 'target_name': 'chrome_resources', | 86 'target_name': 'chrome_resources', |
79 'type': 'none', | 87 'type': 'none', |
80 'actions': [ | 88 'actions': [ |
81 # Data resources. | 89 # Data resources. |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 'files': ['<@(default_apps_list)'] | 323 'files': ['<@(default_apps_list)'] |
316 }, | 324 }, |
317 ], | 325 ], |
318 }], | 326 }], |
319 ], # conditions | 327 ], # conditions |
320 }], # end OS != "mac" | 328 }], # end OS != "mac" |
321 ], # conditions | 329 ], # conditions |
322 }, | 330 }, |
323 ], # targets | 331 ], # targets |
324 } | 332 } |
OLD | NEW |