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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 11414180: Add a gyp flag to allow removing dependency on ppapi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
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 '../content/content.gyp:content_renderer', 16 '../content/content.gyp:content_renderer',
17 '../net/net.gyp:net', 17 '../net/net.gyp:net',
18 '../ppapi/ppapi_internal.gyp:ppapi_host',
19 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
20 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
21 '../ppapi/ppapi_internal.gyp:ppapi_shared',
22 '../printing/printing.gyp:printing', 18 '../printing/printing.gyp:printing',
23 '../skia/skia.gyp:skia', 19 '../skia/skia.gyp:skia',
24 '../third_party/hunspell/hunspell.gyp:hunspell', 20 '../third_party/hunspell/hunspell.gyp:hunspell',
25 '../third_party/icu/icu.gyp:icui18n', 21 '../third_party/icu/icu.gyp:icui18n',
26 '../third_party/icu/icu.gyp:icuuc', 22 '../third_party/icu/icu.gyp:icuuc',
27 '../third_party/npapi/npapi.gyp:npapi', 23 '../third_party/npapi/npapi.gyp:npapi',
28 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 24 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
29 '../ui/surface/surface.gyp:surface', 25 '../ui/surface/surface.gyp:surface',
30 '../webkit/support/webkit_support.gyp:glue', 26 '../webkit/support/webkit_support.gyp:glue',
31 '../webkit/support/webkit_support.gyp:webkit_gpu', 27 '../webkit/support/webkit_support.gyp:webkit_gpu',
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 'renderer/visitedlink_slave.h', 276 'renderer/visitedlink_slave.h',
281 'renderer/webview_color_overlay.cc', 277 'renderer/webview_color_overlay.cc',
282 'renderer/webview_color_overlay.h', 278 'renderer/webview_color_overlay.h',
283 ], 279 ],
284 'conditions': [ 280 'conditions': [
285 ['disable_nacl!=1', { 281 ['disable_nacl!=1', {
286 'dependencies': [ 282 'dependencies': [
287 'nacl', 283 'nacl',
288 ], 284 ],
289 }], 285 }],
286 ['enable_ppapi==1', {
287 'dependencies': [
288 '../ppapi/ppapi_internal.gyp:ppapi_host',
289 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
290 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
291 '../ppapi/ppapi_internal.gyp:ppapi_shared',
292 ],
293 }, { # enable_ppapi==0
294 'sources/': [
295 ['exclude', '^renderer/pepper/'],
296 ],
297 }],
290 ['safe_browsing==1', { 298 ['safe_browsing==1', {
291 'defines': [ 299 'defines': [
292 'ENABLE_SAFE_BROWSING', 300 'ENABLE_SAFE_BROWSING',
293 ], 301 ],
294 'dependencies': [ 302 'dependencies': [
295 'safe_browsing_proto', 303 'safe_browsing_proto',
296 '../third_party/smhasher/smhasher.gyp:murmurhash3', 304 '../third_party/smhasher/smhasher.gyp:murmurhash3',
297 ], 305 ],
298 }, { # safe_browsing==0 306 }, { # safe_browsing==0
299 'sources/': [ 307 'sources/': [
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 'export_dependent_settings': [ 349 'export_dependent_settings': [
342 '<(allocator_target)', 350 '<(allocator_target)',
343 ], 351 ],
344 }], 352 }],
345 ], 353 ],
346 }], 354 }],
347 ], 355 ],
348 }, 356 },
349 ], 357 ],
350 } 358 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698