| 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 # TODO(dpapad): Add compile targets for all files, crbug.com/721073. | 5 # TODO(dpapad): Add compile targets for all files, crbug.com/721073. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'browser_api', |
| 10 'dependencies': [ |
| 11 '<(EXTERNS_GYP):chrome_extensions', |
| 12 '<(EXTERNS_GYP):mime_handler_private', |
| 13 ], |
| 14 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
| 15 }, |
| 16 { |
| 9 'target_name': 'gesture_detector', | 17 'target_name': 'gesture_detector', |
| 10 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 18 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
| 11 }, | 19 }, |
| 12 { | 20 { |
| 13 'target_name': 'open_pdf_params_parser', | 21 'target_name': 'open_pdf_params_parser', |
| 14 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 22 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
| 15 }, | 23 }, |
| 16 { | 24 { |
| 17 'target_name': 'pdf_scripting_api', | 25 'target_name': 'pdf_scripting_api', |
| 18 'dependencies': [ | 26 'dependencies': [ |
| 19 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:assert', | 27 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:assert', |
| 20 ], | 28 ], |
| 21 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 29 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
| 22 }, | 30 }, |
| 23 { | 31 { |
| 24 'target_name': 'viewport_scroller', | 32 'target_name': 'viewport_scroller', |
| 25 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 33 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
| 26 }, | 34 }, |
| 35 { |
| 36 'target_name': 'pdf_resources', |
| 37 'type': 'none', |
| 38 'dependencies': [ |
| 39 'elements/viewer-bookmark/compiled_resources2.gyp:*', |
| 40 'elements/viewer-error-screen/compiled_resources2.gyp:*', |
| 41 'elements/viewer-page-indicator/compiled_resources2.gyp:*', |
| 42 'elements/viewer-page-selector/compiled_resources2.gyp:*', |
| 43 'elements/viewer-password-screen/compiled_resources2.gyp:*', |
| 44 ], |
| 45 }, |
| 27 ], | 46 ], |
| 28 } | 47 } |
| OLD | NEW |