| 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 'distilled_page_proto', |
| 14 'dom_distiller_core', | 15 'dom_distiller_core', |
| 15 'dom_distiller_resources', | 16 'dom_distiller_resources', |
| 16 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 17 '../content/content.gyp:content_browser', | 18 '../content/content.gyp:content_browser', |
| 18 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
| 20 '../sync/sync.gyp:sync', |
| 19 ], | 21 ], |
| 20 'include_dirs': [ | 22 'include_dirs': [ |
| 21 '..', | 23 '..', |
| 22 ], | 24 ], |
| 23 'sources': [ | 25 'sources': [ |
| 26 'dom_distiller/webui/dom_distiller_handler.cc', |
| 27 'dom_distiller/webui/dom_distiller_handler.h', |
| 24 'dom_distiller/webui/dom_distiller_ui.cc', | 28 'dom_distiller/webui/dom_distiller_ui.cc', |
| 25 'dom_distiller/webui/dom_distiller_ui.h', | 29 'dom_distiller/webui/dom_distiller_ui.h', |
| 26 'dom_distiller/webui/dom_distiller_handler.cc', | |
| 27 'dom_distiller/webui/dom_distiller_handler.h', | |
| 28 ], | 30 ], |
| 29 }, | 31 }, |
| 30 { | 32 { |
| 31 'target_name': 'dom_distiller_resources', | 33 'target_name': 'dom_distiller_resources', |
| 32 'type': 'none', | 34 'type': 'none', |
| 33 'variables': { | 35 'variables': { |
| 34 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components', | 36 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components', |
| 35 }, | 37 }, |
| 36 'actions': [ | 38 'actions': [ |
| 37 { | 39 { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'dom_distiller/content/distiller_page_web_contents.cc', | 115 'dom_distiller/content/distiller_page_web_contents.cc', |
| 114 'dom_distiller/content/distiller_page_web_contents.h', | 116 'dom_distiller/content/distiller_page_web_contents.h', |
| 115 ], | 117 ], |
| 116 }, | 118 }, |
| 117 ], | 119 ], |
| 118 }], | 120 }], |
| 119 ], | 121 ], |
| 120 }], | 122 }], |
| 121 ], | 123 ], |
| 122 } | 124 } |
| OLD | NEW |