| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'targets': [ | |
| 6 { | |
| 7 'target_name': 'volume_controller', | |
| 8 'variables': { | |
| 9 'depends': [], | |
| 10 'externs': [] | |
| 11 }, | |
| 12 'includes': [ | |
| 13 '../../compile_js.gypi' | |
| 14 ] | |
| 15 }, | |
| 16 { | |
| 17 'target_name': 'track_list', | |
| 18 'variables': { | |
| 19 'depends': [], | |
| 20 'externs': [ | |
| 21 '../../externs/es7_workaround.js' | |
| 22 ] | |
| 23 }, | |
| 24 'includes': [ | |
| 25 '../../compile_js.gypi' | |
| 26 ] | |
| 27 }, | |
| 28 { | |
| 29 'target_name': 'control_panel', | |
| 30 'variables': { | |
| 31 'depends': [], | |
| 32 'externs': [] | |
| 33 }, | |
| 34 'includes': [ | |
| 35 '../../compile_js.gypi' | |
| 36 ] | |
| 37 }, | |
| 38 { | |
| 39 'target_name': 'audio_player', | |
| 40 'variables': { | |
| 41 'depends': [ | |
| 42 '../js/audio_player_model.js', | |
| 43 'track_list.js', | |
| 44 ], | |
| 45 'externs': [ | |
| 46 '<(EXTERNS_DIR)/chrome_extensions.js', | |
| 47 '../../externs/es7_workaround.js', | |
| 48 ] | |
| 49 }, | |
| 50 'includes': [ | |
| 51 '../../compile_js.gypi' | |
| 52 ] | |
| 53 } | |
| 54 ], | |
| 55 } | |
| OLD | NEW |