OLD | NEW |
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_static', | 7 '../base/base.gyp:base_static', |
8 '../crypto/crypto.gyp:crypto', | 8 '../crypto/crypto.gyp:crypto', |
9 '../net/net.gyp:http_server', | 9 '../net/net.gyp:http_server', |
10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
11 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 11 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
12 '../skia/skia.gyp:skia', | 12 '../skia/skia.gyp:skia', |
13 '../third_party/flac/flac.gyp:libflac', | 13 '../third_party/flac/flac.gyp:libflac', |
14 '../third_party/speex/speex.gyp:libspeex', | 14 '../third_party/speex/speex.gyp:libspeex', |
15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
16 '../third_party/zlib/zlib.gyp:zlib', | 16 '../third_party/zlib/zlib.gyp:zlib', |
17 '../ui/gfx/surface/surface.gyp:surface', | 17 '../ui/gfx/surface/surface.gyp:surface', |
18 '../ui/ui.gyp:ui', | 18 '../ui/ui.gyp:ui', |
19 '../ui/ui.gyp:ui_resources', | 19 '../ui/ui.gyp:ui_resources', |
20 '../webkit/support/webkit_support.gyp:webkit_resources', | 20 '../webkit/support/webkit_support.gyp:webkit_resources', |
21 '../webkit/support/webkit_support.gyp:webkit_strings', | 21 '../webkit/support/webkit_support.gyp:webkit_strings', |
22 ], | 22 ], |
23 'include_dirs': [ | 23 'include_dirs': [ |
24 '..', | 24 '..', |
25 '<(INTERMEDIATE_DIR)', | 25 '<(INTERMEDIATE_DIR)', |
26 ], | 26 ], |
27 'sources': [ | 27 'sources': [ |
28 'public/browser/access_token_store.cc', | 28 'public/browser/access_token_store.cc', |
29 'public/browser/access_token_store.h', | 29 'public/browser/access_token_store.h', |
| 30 'public/browser/browser_child_process_host.h', |
| 31 'public/browser/browser_child_process_host_delegate.cc', |
| 32 'public/browser/browser_child_process_host_delegate.h', |
| 33 'public/browser/browser_child_process_host_iterator.cc', |
| 34 'public/browser/browser_child_process_host_iterator.h', |
30 'public/browser/browser_context.h', | 35 'public/browser/browser_context.h', |
31 'public/browser/browser_main_parts.h', | 36 'public/browser/browser_main_parts.h', |
32 'public/browser/browser_message_filter.cc', | 37 'public/browser/browser_message_filter.cc', |
33 'public/browser/browser_message_filter.h', | 38 'public/browser/browser_message_filter.h', |
34 'public/browser/browser_shutdown.h', | 39 'public/browser/browser_shutdown.h', |
35 'public/browser/browser_thread.h', | 40 'public/browser/browser_thread.h', |
36 'public/browser/browser_thread_delegate.h', | 41 'public/browser/browser_thread_delegate.h', |
37 'public/browser/child_process_data.h', | 42 'public/browser/child_process_data.h', |
38 'public/browser/content_browser_client.h', | 43 'public/browser/content_browser_client.h', |
39 'public/browser/content_ipc_logging.h', | 44 'public/browser/content_ipc_logging.h', |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 'ENABLE_JAVA_BRIDGE', | 834 'ENABLE_JAVA_BRIDGE', |
830 ], | 835 ], |
831 }, { | 836 }, { |
832 'sources/': [ | 837 'sources/': [ |
833 ['exclude', '^browser/renderer_host/java/'], | 838 ['exclude', '^browser/renderer_host/java/'], |
834 ], | 839 ], |
835 }], | 840 }], |
836 ], | 841 ], |
837 } | 842 } |
838 | 843 |
OLD | NEW |