| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'auto_scan_manager', |
| 9 'dependencies': [ |
| 10 'switch_access_interface', |
| 11 'prefs', |
| 12 ], |
| 13 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 14 }, |
| 15 { |
| 8 'target_name': 'background', | 16 'target_name': 'background', |
| 9 'dependencies': [ | 17 'dependencies': [ |
| 10 '<(EXTERNS_GYP):chrome_extensions', | 18 '<(EXTERNS_GYP):chrome_extensions', |
| 11 'prefs', | |
| 12 'switch_access', | 19 'switch_access', |
| 13 ], | 20 ], |
| 14 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], | 21 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 15 }, | 22 }, |
| 16 { | 23 { |
| 24 'target_name': 'keyboard_handler', |
| 25 'dependencies': [ |
| 26 'switch_access_interface', |
| 27 ], |
| 28 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 29 }, |
| 30 { |
| 17 'target_name': 'options', | 31 'target_name': 'options', |
| 18 'dependencies': [ | 32 'dependencies': [ |
| 19 '<(EXTERNS_GYP):chrome_extensions', | 33 '<(EXTERNS_GYP):chrome_extensions', |
| 20 'prefs', | 34 'prefs', |
| 21 'switch_access', | 35 'switch_access', |
| 22 'background', | 36 'background', |
| 23 ], | 37 ], |
| 24 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], | 38 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 25 }, | 39 }, |
| 26 { | 40 { |
| 27 'target_name': 'prefs', | 41 'target_name': 'prefs', |
| 28 'dependencies': [ | 42 'dependencies': [ |
| 29 '<(EXTERNS_GYP):chrome_extensions', | 43 '<(EXTERNS_GYP):chrome_extensions', |
| 30 ], | 44 ], |
| 31 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], | 45 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 32 }, | 46 }, |
| 33 { | 47 { |
| 34 'target_name': 'switch_access', | 48 'target_name': 'switch_access', |
| 35 'dependencies': [ | 49 'dependencies': [ |
| 36 '<(EXTERNS_GYP):accessibility_private', | 50 '<(EXTERNS_GYP):accessibility_private', |
| 37 '<(EXTERNS_GYP):automation', | 51 '<(EXTERNS_GYP):automation', |
| 38 '<(EXTERNS_GYP):chrome_extensions', | 52 '<(EXTERNS_GYP):chrome_extensions', |
| 39 'prefs', | 53 'prefs', |
| 54 'auto_scan_manager', |
| 55 'keyboard_handler', |
| 56 'tree_walker', |
| 57 ], |
| 58 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 59 }, |
| 60 { |
| 61 'target_name': 'switch_access_interface', |
| 62 'dependencies': [ |
| 63 'prefs', |
| 40 ], | 64 ], |
| 41 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], | 65 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 42 }, | 66 }, |
| 67 { |
| 68 'target_name': 'tree_walker', |
| 69 'dependencies': [ |
| 70 '<(EXTERNS_GYP):automation', |
| 71 ], |
| 72 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi
'], |
| 73 } |
| 43 ], | 74 ], |
| 44 } | 75 } |
| OLD | NEW |