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/content_switches.cc', |
| 33 'public/common/content_switches.h', |
32 'public/common/page_transition_types.cc', | 34 'public/common/page_transition_types.cc', |
33 'public/common/page_transition_types.h', | 35 'public/common/page_transition_types.h', |
34 'public/common/resource_dispatcher_delegate.h', | 36 'public/common/resource_dispatcher_delegate.h', |
35 'public/common/view_types.h', | 37 'public/common/view_types.h', |
36 'common/appcache/appcache_backend_proxy.cc', | 38 'common/appcache/appcache_backend_proxy.cc', |
37 'common/appcache/appcache_backend_proxy.h', | 39 'common/appcache/appcache_backend_proxy.h', |
38 'common/appcache/appcache_dispatcher.cc', | 40 'common/appcache/appcache_dispatcher.cc', |
39 'common/appcache/appcache_dispatcher.h', | 41 'common/appcache/appcache_dispatcher.h', |
40 'common/appcache_messages.h', | 42 'common/appcache_messages.h', |
41 'common/child_process.cc', | 43 'common/child_process.cc', |
(...skipping 23 matching lines...) Expand all Loading... |
65 'common/content_export.h', | 67 'common/content_export.h', |
66 'common/content_client.cc', | 68 'common/content_client.cc', |
67 'common/content_client.h', | 69 'common/content_client.h', |
68 'common/content_constants.cc', | 70 'common/content_constants.cc', |
69 'common/content_constants.h', | 71 'common/content_constants.h', |
70 'common/content_counters.cc', | 72 'common/content_counters.cc', |
71 'common/content_counters.h', | 73 'common/content_counters.h', |
72 'common/content_paths.cc', | 74 'common/content_paths.cc', |
73 'common/content_paths.h', | 75 'common/content_paths.h', |
74 'common/content_restriction.h', | 76 'common/content_restriction.h', |
75 'common/content_switches.cc', | |
76 'common/content_switches.h', | |
77 'common/css_colors.h', | 77 'common/css_colors.h', |
78 'common/database_messages.h', | 78 'common/database_messages.h', |
79 'common/database_util.cc', | 79 'common/database_util.cc', |
80 'common/database_util.h', | 80 'common/database_util.h', |
81 'common/db_message_filter.cc', | 81 'common/db_message_filter.cc', |
82 'common/db_message_filter.h', | 82 'common/db_message_filter.h', |
83 'common/debug_flags.cc', | 83 'common/debug_flags.cc', |
84 'common/debug_flags.h', | 84 'common/debug_flags.h', |
85 'common/desktop_notification_messages.h', | 85 'common/desktop_notification_messages.h', |
86 'common/device_orientation_messages.h', | 86 'common/device_orientation_messages.h', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 ], | 335 ], |
336 'link_settings': { | 336 'link_settings': { |
337 'libraries': [ | 337 'libraries': [ |
338 '-lEGL', | 338 '-lEGL', |
339 '-lGLESv2', | 339 '-lGLESv2', |
340 ], | 340 ], |
341 }, | 341 }, |
342 }], | 342 }], |
343 ], | 343 ], |
344 } | 344 } |
OLD | NEW |