| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'background', | 7 'target_name': 'background', |
| 8 'variables': { | 8 'variables': { |
| 9 'depends': [ | 9 'depends': [ |
| 10 '../../../webui/resources/js/cr.js', | 10 '../../../webui/resources/js/cr.js', |
| 11 '../../../webui/resources/js/cr/event_target.js', | 11 '../../../webui/resources/js/cr/event_target.js', |
| 12 '../../../webui/resources/js/cr/ui/array_data_model.js', | 12 '../../../webui/resources/js/cr/ui/array_data_model.js', |
| 13 '../../../webui/resources/js/load_time_data.js', | 13 '../../../webui/resources/js/load_time_data.js', |
| 14 '../../file_manager/common/js/util.js', | 14 '../../file_manager/common/js/util.js', |
| 15 '../../file_manager/common/js/async_util.js', | 15 '../../file_manager/common/js/async_util.js', |
| 16 '../../file_manager/common/js/volume_manager_common.js', | 16 '../../file_manager/common/js/volume_manager_common.js', |
| 17 '../../file_manager/background/js/volume_manager.js', | 17 '../../file_manager/background/js/volume_manager.js', |
| 18 '../../file_manager/common/js/error_util.js', | 18 '../../file_manager/common/js/error_util.js', |
| 19 '../../file_manager/foreground/js/file_type.js' | 19 '../../file_manager/foreground/js/file_type.js' |
| 20 ], | 20 ], |
| 21 'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'], | 21 'externs': [ |
| 22 '<(CLOSURE_DIR)/externs/chrome_send_externs.js', |
| 23 '<(CLOSURE_DIR)/externs/chrome_extensions.js', |
| 24 '<(CLOSURE_DIR)/externs/file_manager_private.js', |
| 25 ], |
| 22 }, | 26 }, |
| 23 'includes': [ | 27 'includes': [ |
| 24 '../../../../third_party/closure_compiler/compile_js.gypi' | 28 '../../../../third_party/closure_compiler/compile_js.gypi' |
| 25 ], | 29 ], |
| 26 }, | 30 }, |
| 27 { | 31 { |
| 28 'target_name': 'gallery_scripts', | 32 'target_name': 'gallery_scripts', |
| 29 'variables': { | 33 'variables': { |
| 30 'depends': [ | 34 'depends': [ |
| 31 ], | 35 ], |
| 32 'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'], | 36 'externs': [ |
| 37 '<(CLOSURE_DIR)/externs/chrome_send_externs.js', |
| 38 '<(CLOSURE_DIR)/externs/chrome_extensions.js', |
| 39 '<(CLOSURE_DIR)/externs/file_manager_private.js', |
| 40 '<(CLOSURE_DIR)/externs/metrics_private.js', |
| 41 ], |
| 33 }, | 42 }, |
| 34 'includes': [ | 43 'includes': [ |
| 35 '../../../../third_party/closure_compiler/compile_js.gypi' | 44 '../../../../third_party/closure_compiler/compile_js.gypi' |
| 36 ], | 45 ], |
| 37 } | 46 } |
| 38 ], | 47 ], |
| 39 } | 48 } |
| 40 | 49 |
| 41 | 50 |
| OLD | NEW |