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/demo', |
| 75 'files': [ |
| 76 'browser/resources/extension_resource/demo/library.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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 'files': ['<@(default_apps_list)'] | 389 'files': ['<@(default_apps_list)'] |
382 }, | 390 }, |
383 ], | 391 ], |
384 }], | 392 }], |
385 ], # conditions | 393 ], # conditions |
386 }], # end OS != "mac" | 394 }], # end OS != "mac" |
387 ], # conditions | 395 ], # conditions |
388 }, | 396 }, |
389 ], # targets | 397 ], # targets |
390 } | 398 } |
OLD | NEW |