| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'conditions': [ | 6 'conditions': [ |
| 7 ['android_webview_build == 0', { | 7 ['android_webview_build == 0', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'dom_distiller_webui', | 10 'target_name': 'dom_distiller_webui', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 'component_strings.gyp:component_strings', | 13 'component_strings.gyp:component_strings', |
| 14 'dom_distiller_core', | 14 'dom_distiller_core', |
| 15 'dom_distiller_resources', | 15 'dom_distiller_resources', |
| 16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 17 '../content/content.gyp:content_browser', | 17 '../content/content.gyp:content_browser', |
| 18 '../skia/skia.gyp:skia', | 18 '../skia/skia.gyp:skia', |
| 19 '../sync/sync.gyp:sync', | 19 '../sync/sync.gyp:sync', |
| 20 ], | 20 ], |
| 21 'include_dirs': [ | 21 'include_dirs': [ |
| 22 '..', | 22 '..', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 'dom_distiller/webui/dom_distiller_handler.cc', | 25 'dom_distiller/webui/dom_distiller_handler.cc', |
| 26 'dom_distiller/webui/dom_distiller_handler.h', | 26 'dom_distiller/webui/dom_distiller_handler.h', |
| 27 'dom_distiller/webui/dom_distiller_ui.cc', | 27 'dom_distiller/webui/dom_distiller_ui.cc', |
| 28 'dom_distiller/webui/dom_distiller_ui.h', | 28 'dom_distiller/webui/dom_distiller_ui.h', |
| 29 'dom_distiller/webui/dom_distiller_viewer_handler.cc', |
| 30 'dom_distiller/webui/dom_distiller_viewer_handler.h', |
| 31 'dom_distiller/webui/dom_distiller_viewer_ui.cc', |
| 32 'dom_distiller/webui/dom_distiller_viewer_ui.h', |
| 29 ], | 33 ], |
| 30 }, | 34 }, |
| 31 { | 35 { |
| 32 'target_name': 'dom_distiller_resources', | 36 'target_name': 'dom_distiller_resources', |
| 33 'type': 'none', | 37 'type': 'none', |
| 34 'variables': { | 38 'variables': { |
| 35 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components', | 39 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components', |
| 36 }, | 40 }, |
| 37 'actions': [ | 41 'actions': [ |
| 38 { | 42 { |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 'dom_distiller/content/dom_distiller_service_factory.cc', | 120 'dom_distiller/content/dom_distiller_service_factory.cc', |
| 117 'dom_distiller/content/dom_distiller_service_factory.h', | 121 'dom_distiller/content/dom_distiller_service_factory.h', |
| 118 ], | 122 ], |
| 119 }, | 123 }, |
| 120 ], | 124 ], |
| 121 }], | 125 }], |
| 122 ], | 126 ], |
| 123 }], | 127 }], |
| 124 ], | 128 ], |
| 125 } | 129 } |
| OLD | NEW |