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

Side by Side Diff: content/content_common.gypi

Issue 187183002: Add creation of ServiceManager to Content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Check USE_MOJO for Windows bots Created 6 years, 9 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
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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../mojo/mojo.gyp:mojo_environment_chromium',
sky 2014/03/19 23:48:29 These should be moved to around 512ish (use_mojo==
DaveMoore 2014/03/20 00:04:26 Done.
10 '../mojo/mojo.gyp:mojo_service_manager',
9 '../net/net.gyp:net', 11 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 12 '../skia/skia.gyp:skia',
11 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', 13 '../third_party/WebKit/public/blink_headers.gyp:blink_headers',
12 '../third_party/icu/icu.gyp:icuuc', 14 '../third_party/icu/icu.gyp:icuuc',
13 '../third_party/libjingle/libjingle.gyp:libjingle', 15 '../third_party/libjingle/libjingle.gyp:libjingle',
14 '../ui/accessibility/accessibility.gyp:accessibility', 16 '../ui/accessibility/accessibility.gyp:accessibility',
15 '../ui/base/ui_base.gyp:ui_base', 17 '../ui/base/ui_base.gyp:ui_base',
16 '../ui/gfx/gfx.gyp:gfx', 18 '../ui/gfx/gfx.gyp:gfx',
17 '../ui/gfx/gfx.gyp:gfx_geometry', 19 '../ui/gfx/gfx.gyp:gfx_geometry',
18 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 20 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 'common/media/video_capture.h', 326 'common/media/video_capture.h',
325 'common/media/video_capture_messages.h', 327 'common/media/video_capture_messages.h',
326 'common/media/webrtc_identity_messages.h', 328 'common/media/webrtc_identity_messages.h',
327 'common/memory_benchmark_messages.h', 329 'common/memory_benchmark_messages.h',
328 'common/message_port_messages.h', 330 'common/message_port_messages.h',
329 'common/message_router.cc', 331 'common/message_router.cc',
330 'common/message_router.h', 332 'common/message_router.h',
331 'common/mime_registry_messages.h', 333 'common/mime_registry_messages.h',
332 'common/mojo/mojo_channel_init.cc', 334 'common/mojo/mojo_channel_init.cc',
333 'common/mojo/mojo_channel_init.h', 335 'common/mojo/mojo_channel_init.h',
336 'common/mojo/mojo_init.cc',
337 'common/mojo/mojo_init.h',
334 'common/mojo/mojo_messages.h', 338 'common/mojo/mojo_messages.h',
335 'common/navigation_gesture.h', 339 'common/navigation_gesture.h',
336 'common/net/url_fetcher.cc', 340 'common/net/url_fetcher.cc',
337 'common/net/url_request_user_data.cc', 341 'common/net/url_request_user_data.cc',
338 'common/net/url_request_user_data.h', 342 'common/net/url_request_user_data.h',
339 'common/one_writer_seqlock.cc', 343 'common/one_writer_seqlock.cc',
340 'common/one_writer_seqlock.h', 344 'common/one_writer_seqlock.h',
341 'common/p2p_messages.h', 345 'common/p2p_messages.h',
342 'common/page_state_serialization.cc', 346 'common/page_state_serialization.cc',
343 'common/page_state_serialization.h', 347 'common/page_state_serialization.h',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 'link_settings': { 497 'link_settings': {
494 'libraries': [ 498 'libraries': [
495 '<(PRODUCT_DIR)/lib/libmojo_system.so', 499 '<(PRODUCT_DIR)/lib/libmojo_system.so',
496 ], 500 ],
497 }, 501 },
498 }], 502 }],
499 ['use_mojo==0', { 503 ['use_mojo==0', {
500 'sources!': [ 504 'sources!': [
501 'common/mojo/mojo_channel_init.cc', 505 'common/mojo/mojo_channel_init.cc',
502 'common/mojo/mojo_channel_init.h', 506 'common/mojo/mojo_channel_init.h',
507 'common/mojo/mojo_init.cc',
508 'common/mojo/mojo_init.h',
503 ], 509 ],
504 }, { 510 }, {
505 'dependencies': [ 511 'dependencies': [
506 '../mojo/mojo.gyp:mojo_environment_chromium', 512 '../mojo/mojo.gyp:mojo_environment_chromium',
507 '../mojo/mojo.gyp:mojo_system', 513 '../mojo/mojo.gyp:mojo_system',
508 '../mojo/mojo.gyp:mojo_system_impl', 514 '../mojo/mojo.gyp:mojo_system_impl',
509 ], 515 ],
510 }], 516 }],
511 ['OS=="mac"', { 517 ['OS=="mac"', {
512 'sources': [ 518 'sources': [
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 740 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
735 'common/sandbox_linux/bpf_renderer_policy_linux.h', 741 'common/sandbox_linux/bpf_renderer_policy_linux.h',
736 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 742 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
737 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 743 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
738 ], 744 ],
739 }, { 745 }, {
740 'defines': ['USE_SECCOMP_BPF'], 746 'defines': ['USE_SECCOMP_BPF'],
741 }], 747 }],
742 ], 748 ],
743 } 749 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698