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

Side by Side Diff: content/content_browser.gypi

Issue 9113079: DevTools: refactor remote debugging server to enable content_shell debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing. Created 8 years, 10 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 'browser/debugger/devtools_resources.gyp:devtools_resources',
7 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
8 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
9 '../net/net.gyp:http_server', 10 '../net/net.gyp:http_server',
10 '../net/net.gyp:net', 11 '../net/net.gyp:net',
11 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 12 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
12 '../skia/skia.gyp:skia', 13 '../skia/skia.gyp:skia',
13 '../third_party/flac/flac.gyp:libflac', 14 '../third_party/flac/flac.gyp:libflac',
14 '../third_party/speex/speex.gyp:libspeex', 15 '../third_party/speex/speex.gyp:libspeex',
15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 16 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
16 '../third_party/zlib/zlib.gyp:zlib', 17 '../third_party/zlib/zlib.gyp:zlib',
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 'browser/worker_host/worker_document_set.h', 670 'browser/worker_host/worker_document_set.h',
670 'browser/worker_host/worker_message_filter.cc', 671 'browser/worker_host/worker_message_filter.cc',
671 'browser/worker_host/worker_message_filter.h', 672 'browser/worker_host/worker_message_filter.h',
672 'browser/worker_host/worker_process_host.cc', 673 'browser/worker_host/worker_process_host.cc',
673 'browser/worker_host/worker_process_host.h', 674 'browser/worker_host/worker_process_host.h',
674 'browser/worker_host/worker_service_impl.cc', 675 'browser/worker_host/worker_service_impl.cc',
675 'browser/worker_host/worker_service_impl.h', 676 'browser/worker_host/worker_service_impl.h',
676 'browser/zygote_host_linux.cc', 677 'browser/zygote_host_linux.cc',
677 'browser/zygote_host_linux.h', 678 'browser/zygote_host_linux.h',
678 'browser/zygote_main_linux.cc', 679 'browser/zygote_main_linux.cc',
680 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources.h',
681 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.cc',
682 '<(SHARED_INTERMEDIATE_DIR)/webkit/grit/devtools_resources_map.h',
679 ], 683 ],
680 'conditions': [ 684 'conditions': [
681 ['OS!="win" and OS!="mac" and OS!="linux"', { 685 ['OS!="win" and OS!="mac" and OS!="linux"', {
682 'sources': [ 686 'sources': [
683 'browser/gamepad/platform_data_fetcher.cc', 687 'browser/gamepad/platform_data_fetcher.cc',
684 ] 688 ]
685 }], 689 }],
686 ['p2p_apis==1', { 690 ['p2p_apis==1', {
687 'sources': [ 691 'sources': [
688 'browser/renderer_host/p2p/socket_host.cc', 692 'browser/renderer_host/p2p/socket_host.cc',
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 'ENABLE_JAVA_BRIDGE', 846 'ENABLE_JAVA_BRIDGE',
843 ], 847 ],
844 }, { 848 }, {
845 'sources/': [ 849 'sources/': [
846 ['exclude', '^browser/renderer_host/java/'], 850 ['exclude', '^browser/renderer_host/java/'],
847 ], 851 ],
848 }], 852 }],
849 ], 853 ],
850 } 854 }
851 855
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698