Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: components/dom_distiller.gypi

Issue 23503042: Initial WebUI for DOM Distiller. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added dependency for dom_distiller_resources Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/components.gyp ('k') | components/dom_distiller/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/dom_distiller/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698