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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 62793002: Allow printing component to be removed completely (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: also fix chromium_builder_tests, coverage_build Created 7 years, 1 month 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 | « chrome/chrome_dll.gypi ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [ 11 'dependencies': [
12 'common', 12 'common',
13 'common_net', 13 'common_net',
14 'chrome_resources.gyp:chrome_resources', 14 'chrome_resources.gyp:chrome_resources',
15 'chrome_resources.gyp:chrome_strings', 15 'chrome_resources.gyp:chrome_strings',
16 '../components/components.gyp:autofill_content_renderer', 16 '../components/components.gyp:autofill_content_renderer',
17 '../components/components.gyp:startup_metric_utils', 17 '../components/components.gyp:startup_metric_utils',
18 '../components/components.gyp:plugins_renderer', 18 '../components/components.gyp:plugins_renderer',
19 '../components/components.gyp:translate_common', 19 '../components/components.gyp:translate_common',
20 '../components/components.gyp:translate_language_detection', 20 '../components/components.gyp:translate_language_detection',
21 '../components/components.gyp:visitedlink_renderer', 21 '../components/components.gyp:visitedlink_renderer',
22 '../content/content.gyp:content_renderer', 22 '../content/content.gyp:content_renderer',
23 '../media/cast/cast.gyp:cast_config', 23 '../media/cast/cast.gyp:cast_config',
24 '../media/cast/cast_sender.gyp:cast_sender', 24 '../media/cast/cast_sender.gyp:cast_sender',
25 '../net/net.gyp:net', 25 '../net/net.gyp:net',
26 '../printing/printing.gyp:printing',
27 '../skia/skia.gyp:skia', 26 '../skia/skia.gyp:skia',
28 '../third_party/WebKit/public/blink.gyp:blink', 27 '../third_party/WebKit/public/blink.gyp:blink',
29 '../third_party/hunspell/hunspell.gyp:hunspell', 28 '../third_party/hunspell/hunspell.gyp:hunspell',
30 '../third_party/icu/icu.gyp:icui18n', 29 '../third_party/icu/icu.gyp:icui18n',
31 '../third_party/icu/icu.gyp:icuuc', 30 '../third_party/icu/icu.gyp:icuuc',
32 '../third_party/npapi/npapi.gyp:npapi', 31 '../third_party/npapi/npapi.gyp:npapi',
33 '../third_party/re2/re2.gyp:re2', 32 '../third_party/re2/re2.gyp:re2',
34 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 33 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
35 '../ui/surface/surface.gyp:surface', 34 '../ui/surface/surface.gyp:surface',
36 '../webkit/common/webkit_common.gyp:webkit_common', 35 '../webkit/common/webkit_common.gyp:webkit_common',
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 }], 468 }],
470 ], 469 ],
471 }], 470 }],
472 ['OS != "ios"', { 471 ['OS != "ios"', {
473 'dependencies': [ 472 'dependencies': [
474 # TODO(hclam): See crbug.com/298380 for details. 473 # TODO(hclam): See crbug.com/298380 for details.
475 # We should isolate the APIs needed by the renderer. 474 # We should isolate the APIs needed by the renderer.
476 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api', 475 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api',
477 ], 476 ],
478 }], 477 }],
478 ['enable_printing!=0', {
479 'dependencies': [
480 '../printing/printing.gyp:printing',
481 ],
482 }],
479 ], 483 ],
480 }, 484 },
481 ], 485 ],
482 } 486 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698