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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 10825226: Clean-up safe browsing dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: movfe sources back to main list Created 8 years, 4 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 | « no previous file | 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 (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 'safe_browsing_proto',
17 '../content/content.gyp:content_renderer', 16 '../content/content.gyp:content_renderer',
18 '../net/net.gyp:net', 17 '../net/net.gyp:net',
19 '../ppapi/ppapi_internal.gyp:ppapi_host', 18 '../ppapi/ppapi_internal.gyp:ppapi_host',
20 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 19 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
21 '../ppapi/ppapi_internal.gyp:ppapi_shared', 20 '../ppapi/ppapi_internal.gyp:ppapi_shared',
22 '../printing/printing.gyp:printing', 21 '../printing/printing.gyp:printing',
23 '../skia/skia.gyp:skia', 22 '../skia/skia.gyp:skia',
24 '../third_party/cld/cld.gyp:cld', 23 '../third_party/cld/cld.gyp:cld',
25 '../third_party/hunspell/hunspell.gyp:hunspell', 24 '../third_party/hunspell/hunspell.gyp:hunspell',
26 '../third_party/icu/icu.gyp:icui18n', 25 '../third_party/icu/icu.gyp:icui18n',
27 '../third_party/icu/icu.gyp:icuuc', 26 '../third_party/icu/icu.gyp:icuuc',
28 '../third_party/npapi/npapi.gyp:npapi', 27 '../third_party/npapi/npapi.gyp:npapi',
29 '../third_party/smhasher/smhasher.gyp:murmurhash3',
30 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 28 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
31 '../ui/surface/surface.gyp:surface', 29 '../ui/surface/surface.gyp:surface',
32 '../webkit/support/webkit_support.gyp:glue', 30 '../webkit/support/webkit_support.gyp:glue',
33 '../webkit/support/webkit_support.gyp:webkit_gpu', 31 '../webkit/support/webkit_support.gyp:webkit_gpu',
34 '../webkit/support/webkit_support.gyp:webkit_media', 32 '../webkit/support/webkit_support.gyp:webkit_media',
35 '../webkit/support/webkit_support.gyp:webkit_resources', 33 '../webkit/support/webkit_support.gyp:webkit_resources',
36 ], 34 ],
37 'include_dirs': [ 35 'include_dirs': [
38 '..', 36 '..',
39 '../third_party/cld', 37 '../third_party/cld',
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 'conditions': [ 280 'conditions': [
283 ['disable_nacl!=1', { 281 ['disable_nacl!=1', {
284 'dependencies': [ 282 'dependencies': [
285 'nacl', 283 'nacl',
286 ], 284 ],
287 }], 285 }],
288 ['safe_browsing==1', { 286 ['safe_browsing==1', {
289 'defines': [ 287 'defines': [
290 'ENABLE_SAFE_BROWSING', 288 'ENABLE_SAFE_BROWSING',
291 ], 289 ],
290 'dependencies': [
291 'safe_browsing_proto',
292 '../third_party/smhasher/smhasher.gyp:murmurhash3',
293 ],
292 }, { # safe_browsing==0 294 }, { # safe_browsing==0
293 'sources/': [ 295 'sources/': [
294 ['exclude', '^renderer/safe_browsing/'], 296 ['exclude', '^renderer/safe_browsing/'],
295 ], 297 ],
296 }], 298 }],
297 ['OS=="mac"', { 299 ['OS=="mac"', {
298 'dependencies': [ 300 'dependencies': [
299 '../third_party/mach_override/mach_override.gyp:mach_override', 301 '../third_party/mach_override/mach_override.gyp:mach_override',
300 ], 302 ],
301 }], 303 }],
(...skipping 22 matching lines...) Expand all
324 'sources!': [ 326 'sources!': [
325 'renderer/extensions/experimental.usb_custom_bindings.cc', 327 'renderer/extensions/experimental.usb_custom_bindings.cc',
326 'renderer/extensions/experimental.usb_custom_bindings.h', 328 'renderer/extensions/experimental.usb_custom_bindings.h',
327 'renderer/resources/extensions/experimental.usb_custom_bindings.js', 329 'renderer/resources/extensions/experimental.usb_custom_bindings.js',
328 ], 330 ],
329 }], 331 }],
330 ], 332 ],
331 }, 333 },
332 ], 334 ],
333 } 335 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698