OLD | NEW |
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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../build/temp_gyp/googleurl.gyp:googleurl', | 8 '../build/temp_gyp/googleurl.gyp:googleurl', |
9 '../gpu/gpu.gyp:gpu_ipc', | 9 '../gpu/gpu.gyp:gpu_ipc', |
10 '../ipc/ipc.gyp:ipc', | 10 '../ipc/ipc.gyp:ipc', |
(...skipping 11 matching lines...) Expand all Loading... |
22 '../webkit/support/webkit_support.gyp:fileapi', | 22 '../webkit/support/webkit_support.gyp:fileapi', |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 '..', | 25 '..', |
26 ], | 26 ], |
27 'export_dependent_settings': [ | 27 'export_dependent_settings': [ |
28 '../base/base.gyp:base', | 28 '../base/base.gyp:base', |
29 ], | 29 ], |
30 'sources': [ | 30 'sources': [ |
31 'public/common/bindings_policy.h', | 31 'public/common/bindings_policy.h', |
| 32 'public/common/child_process_host.h', |
32 'public/common/child_process_host_delegate.h', | 33 'public/common/child_process_host_delegate.h', |
33 'public/common/child_process_sandbox_support_linux.h', | 34 'public/common/child_process_sandbox_support_linux.h', |
34 'public/common/content_constants.cc', | 35 'public/common/content_constants.cc', |
35 'public/common/content_constants.h', | 36 'public/common/content_constants.h', |
36 'public/common/content_paths.h', | 37 'public/common/content_paths.h', |
37 'public/common/content_restriction.h', | 38 'public/common/content_restriction.h', |
38 'public/common/content_switches.cc', | 39 'public/common/content_switches.cc', |
39 'public/common/content_switches.h', | 40 'public/common/content_switches.h', |
40 'public/common/dx_diag_node.cc', | 41 'public/common/dx_diag_node.cc', |
41 'public/common/dx_diag_node.h', | 42 'public/common/dx_diag_node.h', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 'public/common/url_fetcher_factory.h', | 76 'public/common/url_fetcher_factory.h', |
76 'public/common/view_type.h', | 77 'public/common/view_type.h', |
77 'public/common/zygote_fork_delegate_linux.h', | 78 'public/common/zygote_fork_delegate_linux.h', |
78 'common/appcache/appcache_backend_proxy.cc', | 79 'common/appcache/appcache_backend_proxy.cc', |
79 'common/appcache/appcache_backend_proxy.h', | 80 'common/appcache/appcache_backend_proxy.h', |
80 'common/appcache/appcache_dispatcher.cc', | 81 'common/appcache/appcache_dispatcher.cc', |
81 'common/appcache/appcache_dispatcher.h', | 82 'common/appcache/appcache_dispatcher.h', |
82 'common/appcache_messages.h', | 83 'common/appcache_messages.h', |
83 'common/child_process.cc', | 84 'common/child_process.cc', |
84 'common/child_process.h', | 85 'common/child_process.h', |
85 'common/child_process_host.cc', | 86 'common/child_process_host_impl.cc', |
86 'common/child_process_host.h', | 87 'common/child_process_host_impl.h', |
87 'common/child_process_messages.h', | 88 'common/child_process_messages.h', |
88 'common/child_process_sandbox_support_impl_linux.cc', | 89 'common/child_process_sandbox_support_impl_linux.cc', |
89 'common/child_process_sandbox_support_impl_linux.h', | 90 'common/child_process_sandbox_support_impl_linux.h', |
90 'common/child_thread.cc', | 91 'common/child_thread.cc', |
91 'common/child_thread.h', | 92 'common/child_thread.h', |
92 'common/child_trace_message_filter.cc', | 93 'common/child_trace_message_filter.cc', |
93 'common/child_trace_message_filter.h', | 94 'common/child_trace_message_filter.h', |
94 'common/chrome_application_mac.h', | 95 'common/chrome_application_mac.h', |
95 'common/chrome_application_mac.mm', | 96 'common/chrome_application_mac.mm', |
96 'common/chrome_descriptors.h', | 97 'common/chrome_descriptors.h', |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 ], | 319 ], |
319 'link_settings': { | 320 'link_settings': { |
320 'libraries': [ | 321 'libraries': [ |
321 '-lEGL', | 322 '-lEGL', |
322 '-lGLESv2', | 323 '-lGLESv2', |
323 ], | 324 ], |
324 }, | 325 }, |
325 }], | 326 }], |
326 ], | 327 ], |
327 } | 328 } |
OLD | NEW |