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

Side by Side Diff: components/dom_distiller.gypi

Issue 101503002: Build components.gyp:* and components_test.gyp:* on iOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to review Created 7 years 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_tests.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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',
(...skipping 10 matching lines...) Expand all
21 '..', 21 '..',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'dom_distiller/webui/dom_distiller_ui.cc', 24 'dom_distiller/webui/dom_distiller_ui.cc',
25 'dom_distiller/webui/dom_distiller_ui.h', 25 'dom_distiller/webui/dom_distiller_ui.h',
26 'dom_distiller/webui/dom_distiller_handler.cc', 26 'dom_distiller/webui/dom_distiller_handler.cc',
27 'dom_distiller/webui/dom_distiller_handler.h', 27 'dom_distiller/webui/dom_distiller_handler.h',
28 ], 28 ],
29 }, 29 },
30 { 30 {
31 'target_name': 'dom_distiller_content',
32 'type': 'static_library',
33 'dependencies': [
34 'dom_distiller_core',
35 '../skia/skia.gyp:skia',
36 '../sync/sync.gyp:sync',
37 ],
38 'include_dirs': [
39 '..',
40 ],
41 'sources': [
42 'dom_distiller/content/distiller_page_web_contents.h',
43 'dom_distiller/content/distiller_page_web_contents.cc',
44 'dom_distiller/content/dom_distiller_service_factory.h',
45 'dom_distiller/content/dom_distiller_service_factory.cc',
46 ],
47 },
48 {
49 'target_name': 'dom_distiller_resources', 31 'target_name': 'dom_distiller_resources',
50 'type': 'none', 32 'type': 'none',
51 'variables': { 33 'variables': {
52 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components', 34 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/components',
53 }, 35 },
54 'actions': [ 36 'actions': [
55 { 37 {
56 'action_name': 'dom_distiller_resources', 38 'action_name': 'dom_distiller_resources',
57 'variables': { 39 'variables': {
58 'grit_grd_file': 'dom_distiller_resources.grd', 40 'grit_grd_file': 'dom_distiller_resources.grd',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'sources': [ 88 'sources': [
107 'dom_distiller/core/proto/distilled_page.proto', 89 'dom_distiller/core/proto/distilled_page.proto',
108 ], 90 ],
109 'variables': { 91 'variables': {
110 'proto_in_dir': 'dom_distiller/core/proto', 92 'proto_in_dir': 'dom_distiller/core/proto',
111 'proto_out_dir': 'components/dom_distiller/core/proto', 93 'proto_out_dir': 'components/dom_distiller/core/proto',
112 }, 94 },
113 'includes': [ '../build/protoc.gypi' ] 95 'includes': [ '../build/protoc.gypi' ]
114 }, 96 },
115 ], 97 ],
98 'conditions': [
99 ['OS != "ios"', {
100 'targets': [
101 {
102 'target_name': 'dom_distiller_content',
103 'type': 'static_library',
104 'dependencies': [
105 'dom_distiller_core',
106 '../skia/skia.gyp:skia',
107 '../sync/sync.gyp:sync',
108 ],
109 'include_dirs': [
110 '..',
111 ],
112 'sources': [
113 'dom_distiller/content/distiller_page_web_contents.cc',
114 'dom_distiller/content/distiller_page_web_contents.h',
115 'dom_distiller/content/dom_distiller_service_factory.cc',
116 'dom_distiller/content/dom_distiller_service_factory.h',
117 ],
118 },
119 ],
120 }],
121 ],
116 }], 122 }],
117 ], 123 ],
118 } 124 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698