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

Side by Side Diff: content/content_browser.gypi

Issue 7740064: fix content_browser dependencies to work in component build: add (Closed)
Patch Set: Created 9 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
« 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'content_browser', 8 'target_name': 'content_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'content_common', 11 'content_common',
12 '../crypto/crypto.gyp:crypto',
12 '../net/net.gyp:net', 13 '../net/net.gyp:net',
14 '../net/net.gyp:http_server',
13 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 15 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
14 '../skia/skia.gyp:skia', 16 '../skia/skia.gyp:skia',
15 '../third_party/flac/flac.gyp:libflac', 17 '../third_party/flac/flac.gyp:libflac',
16 # TODO(ericu): remove leveldb ref after crbug.com/6955013 is fixed. 18 # TODO(ericu): remove leveldb ref after crbug.com/6955013 is fixed.
17 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 19 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
18 '../third_party/speex/speex.gyp:libspeex', 20 '../third_party/speex/speex.gyp:libspeex',
19 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 21 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
20 '../third_party/zlib/zlib.gyp:zlib', 22 '../third_party/zlib/zlib.gyp:zlib',
21 '../ui/ui.gyp:ui', 23 '../ui/ui.gyp:ui',
22 '../ui/ui.gyp:ui_resources', 24 '../ui/ui.gyp:ui_resources',
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 'browser/renderer_host/p2p/socket_dispatcher_host.cc', 547 'browser/renderer_host/p2p/socket_dispatcher_host.cc',
546 'browser/renderer_host/p2p/socket_dispatcher_host.h', 548 'browser/renderer_host/p2p/socket_dispatcher_host.h',
547 ], 549 ],
548 }], 550 }],
549 ['OS=="win"', { 551 ['OS=="win"', {
550 'dependencies': [ 552 'dependencies': [
551 # For accessibility 553 # For accessibility
552 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 554 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
553 '../third_party/isimpledom/isimpledom.gyp:isimpledom', 555 '../third_party/isimpledom/isimpledom.gyp:isimpledom',
554 ], 556 ],
555 'direct_dependent_settings': { 557 'link_settings': {
556 'link_settings': { 558 'libraries': [
557 'libraries': [ 559 '-llocationapi.lib',
558 '-llocationapi.lib', 560 '-lsensorsapi.lib',
559 '-lsensorsapi.lib', 561 ],
560 ],
561 }
562 }, 562 },
563 'sources!': [ 563 'sources!': [
564 'browser/power_save_blocker_stub.cc', 564 'browser/power_save_blocker_stub.cc',
565 ], 565 ],
566 }], 566 }],
567 ['toolkit_uses_gtk == 1', { 567 ['toolkit_uses_gtk == 1', {
568 'dependencies': [ 568 'dependencies': [
569 '../build/linux/system.gyp:dbus', 569 '../build/linux/system.gyp:dbus',
570 # For FcLangSetAdd call in render_sandbox_host_linux.cc 570 # For FcLangSetAdd call in render_sandbox_host_linux.cc
571 '../build/linux/system.gyp:fontconfig', 571 '../build/linux/system.gyp:fontconfig',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'], 606 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'],
607 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'], 607 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'],
608 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.cc'] , 608 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.cc'] ,
609 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'], 609 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'],
610 ], 610 ],
611 }], 611 }],
612 ], 612 ],
613 }, 613 },
614 ], 614 ],
615 } 615 }
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