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', | 7 '../base/base.gyp:base', |
8 '../build/temp_gyp/googleurl.gyp:googleurl', | 8 '../build/temp_gyp/googleurl.gyp:googleurl', |
9 '../gpu/gpu.gyp:gles2_implementation', | 9 '../gpu/gpu.gyp:gles2_implementation', |
10 '../gpu/gpu.gyp:gpu_ipc', | 10 '../gpu/gpu.gyp:gpu_ipc', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'public/common/url_constants.cc', | 93 'public/common/url_constants.cc', |
94 'public/common/url_constants.h', | 94 'public/common/url_constants.h', |
95 'public/common/url_fetcher.h', | 95 'public/common/url_fetcher.h', |
96 'public/common/url_fetcher_delegate.h', | 96 'public/common/url_fetcher_delegate.h', |
97 'public/common/zygote_fork_delegate_linux.h', | 97 'public/common/zygote_fork_delegate_linux.h', |
98 'common/accessibility_messages.h', | 98 'common/accessibility_messages.h', |
99 'common/android/address_parser.cc', | 99 'common/android/address_parser.cc', |
100 'common/android/address_parser.h', | 100 'common/android/address_parser.h', |
101 'common/android/address_parser_internal.cc', | 101 'common/android/address_parser_internal.cc', |
102 'common/android/address_parser_internal.h', | 102 'common/android/address_parser_internal.h', |
| 103 'common/android/surface_callback.cc', |
| 104 'common/android/surface_callback.h', |
| 105 'common/android/surface_texture_peer.cc', |
| 106 'common/android/surface_texture_peer.h', |
103 'common/appcache/appcache_backend_proxy.cc', | 107 'common/appcache/appcache_backend_proxy.cc', |
104 'common/appcache/appcache_backend_proxy.h', | 108 'common/appcache/appcache_backend_proxy.h', |
105 'common/appcache/appcache_dispatcher.cc', | 109 'common/appcache/appcache_dispatcher.cc', |
106 'common/appcache/appcache_dispatcher.h', | 110 'common/appcache/appcache_dispatcher.h', |
107 'common/appcache_messages.h', | 111 'common/appcache_messages.h', |
108 'common/browser_plugin_messages.h', | 112 'common/browser_plugin_messages.h', |
109 'common/child_process.cc', | 113 'common/child_process.cc', |
110 'common/child_process.h', | 114 'common/child_process.h', |
111 'common/child_process_host_impl.cc', | 115 'common/child_process_host_impl.cc', |
112 'common/child_process_host_impl.h', | 116 'common/child_process_host_impl.h', |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 'public/common/webkit_param_traits.cc', | 339 'public/common/webkit_param_traits.cc', |
336 'public/common/webkit_param_traits.h', | 340 'public/common/webkit_param_traits.h', |
337 ], | 341 ], |
338 'conditions': [ | 342 'conditions': [ |
339 ['OS!="win"', { | 343 ['OS!="win"', { |
340 'sources!': [ | 344 'sources!': [ |
341 'common/sandbox_policy.cc', | 345 'common/sandbox_policy.cc', |
342 'common/sandbox_policy.h', | 346 'common/sandbox_policy.h', |
343 ], | 347 ], |
344 }], | 348 }], |
| 349 ['OS=="android"',{ |
| 350 'link_settings': { |
| 351 'libraries': [ |
| 352 '-landroid', # ANativeWindow |
| 353 ], |
| 354 }, |
| 355 'dependencies': [ |
| 356 'content.gyp:content_jni_headers', |
| 357 'content.gyp:common_aidl', |
| 358 ], |
| 359 }], |
345 ['toolkit_uses_gtk == 1', { | 360 ['toolkit_uses_gtk == 1', { |
346 'dependencies': [ | 361 'dependencies': [ |
347 '../build/linux/system.gyp:gtk', | 362 '../build/linux/system.gyp:gtk', |
348 ], | 363 ], |
349 }], | 364 }], |
350 ['use_x11 == 1', { | 365 ['use_x11 == 1', { |
351 'dependencies': [ | 366 'dependencies': [ |
352 '../build/linux/system.gyp:pangocairo', | 367 '../build/linux/system.gyp:pangocairo', |
353 ], | 368 ], |
354 'include_dirs': [ | 369 'include_dirs': [ |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 '../build/extract_from_cab.py', | 469 '../build/extract_from_cab.py', |
455 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 470 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
456 '<(output)', | 471 '<(output)', |
457 '<(PRODUCT_DIR)', | 472 '<(PRODUCT_DIR)', |
458 ], | 473 ], |
459 }, | 474 }, |
460 ] | 475 ] |
461 }] | 476 }] |
462 ], | 477 ], |
463 } | 478 } |
OLD | NEW |