| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Closure compiler definition for MD History. Not tied into the main closure | 5 # Closure compiler definition for MD History. |
| 6 # build while we get oriented with the system. | |
| 7 # To compile: | |
| 8 # GYP_GENERATORS=ninja tools/gyp/gyp --depth . -Goutput_dir=out_closure \ | |
| 9 # chrome/browser/resources/md_history/compiled_resources.gyp | |
| 10 # ninja -C out_closure/Default | |
| 11 { | 6 { |
| 12 'targets': [ | 7 'targets': [ |
| 13 { | 8 { |
| 14 'target_name': 'history', | 9 'target_name': 'history', |
| 15 | 10 |
| 16 'variables': { | 11 'variables': { |
| 17 'depends': [ | 12 'depends': [ |
| 18 '../../../../ui/webui/resources/js/cr.js', | 13 '../../../../ui/webui/resources/js/cr.js', |
| 19 '../../../../ui/webui/resources/js/util.js', | 14 '../../../../ui/webui/resources/js/util.js', |
| 20 '../../../../ui/webui/resources/js/cr/ui/position_util.js', | 15 '../../../../ui/webui/resources/js/cr/ui/position_util.js', |
| 21 'history_card_manager.js', | 16 'history_card_manager.js', |
| 22 'history_card.js', | 17 'history_card.js', |
| 23 'history_item.js', | 18 'history_item.js', |
| 19 'history_toolbar.js', |
| 20 'history.js', |
| 24 ], | 21 ], |
| 25 'externs': [ | 22 'externs': [ |
| 26 '<(EXTERNS_DIR)/chrome_send.js', | 23 '<(EXTERNS_DIR)/chrome_send.js', |
| 27 '../history/externs.js', | 24 '../history/externs.js', |
| 28 ], | 25 ], |
| 29 }, | 26 }, |
| 30 | 27 |
| 31 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | 28 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], |
| 32 }, | 29 }, |
| 33 ], | 30 ], |
| 34 } | 31 } |
| OLD | NEW |