| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'dom_distiller_core', | |
| 9 'type': 'static_library', | |
| 10 'include_dirs': [ | |
| 11 '..', | |
| 12 ], | |
| 13 'sources': [ | |
| 14 'dom_distiller/core/dom_distiller_constants.cc', | |
| 15 'dom_distiller/core/dom_distiller_constants.h', | |
| 16 ], | |
| 17 }, | |
| 18 { | |
| 19 'target_name': 'dom_distiller_webui', | |
| 20 'type': 'static_library', | |
| 21 'dependencies': [ | |
| 22 'component_strings.gyp:component_strings', | |
| 23 'dom_distiller_core', | |
| 24 'dom_distiller_resources', | |
| 25 '../base/base.gyp:base', | |
| 26 '../base/base.gyp:base', | |
| 27 '../content/content.gyp:content_browser', | |
| 28 '../skia/skia.gyp:skia', | |
| 29 ], | |
| 30 'include_dirs': [ | |
| 31 '..', | |
| 32 ], | |
| 33 'sources': [ | |
| 34 'dom_distiller/webui/dom_distiller_ui.cc', | |
| 35 'dom_distiller/webui/dom_distiller_ui.h', | |
| 36 'dom_distiller/webui/dom_distiller_handler.cc', | |
| 37 'dom_distiller/webui/dom_distiller_handler.h', | |
| 38 ], | |
| 39 }, | |
| 40 { | |
| 41 'target_name': 'dom_distiller_resources', | |
| 42 'type': 'none', | |
| 43 'variables': { | |
| 44 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components', | |
| 45 }, | |
| 46 'actions': [ | |
| 47 { | |
| 48 'action_name': 'dom_distiller_resources', | |
| 49 'variables': { | |
| 50 'grit_grd_file': 'dom_distiller_resources.grd', | |
| 51 }, | |
| 52 'includes': [ '../build/grit_action.gypi' ], | |
| 53 }, | |
| 54 ], | |
| 55 'includes': [ '../build/grit_target.gypi' ], | |
| 56 }, | |
| 57 ], | |
| 58 } | |
| OLD | NEW |