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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 'public/common/webkit_param_traits.cc', | 343 'public/common/webkit_param_traits.cc', |
340 'public/common/webkit_param_traits.h', | 344 'public/common/webkit_param_traits.h', |
341 ], | 345 ], |
342 'conditions': [ | 346 'conditions': [ |
343 ['OS!="win"', { | 347 ['OS!="win"', { |
344 'sources!': [ | 348 'sources!': [ |
345 'common/sandbox_policy.cc', | 349 'common/sandbox_policy.cc', |
346 'common/sandbox_policy.h', | 350 'common/sandbox_policy.h', |
347 ], | 351 ], |
348 }], | 352 }], |
| 353 ['OS=="android"',{ |
| 354 'link_settings': { |
| 355 'libraries': [ |
| 356 '-landroid', # ANativeWindow |
| 357 ], |
| 358 }, |
| 359 'dependencies': [ |
| 360 'content.gyp:content_jni_headers', |
| 361 'content.gyp:common_aidl', |
| 362 ], |
| 363 }], |
349 ['toolkit_uses_gtk == 1', { | 364 ['toolkit_uses_gtk == 1', { |
350 'dependencies': [ | 365 'dependencies': [ |
351 '../build/linux/system.gyp:gtk', | 366 '../build/linux/system.gyp:gtk', |
352 ], | 367 ], |
353 }], | 368 }], |
354 ['use_x11 == 1', { | 369 ['use_x11 == 1', { |
355 'dependencies': [ | 370 'dependencies': [ |
356 '../build/linux/system.gyp:pangocairo', | 371 '../build/linux/system.gyp:pangocairo', |
357 ], | 372 ], |
358 'include_dirs': [ | 373 'include_dirs': [ |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 '../build/extract_from_cab.py', | 467 '../build/extract_from_cab.py', |
453 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 468 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
454 '<(output)', | 469 '<(output)', |
455 '<(PRODUCT_DIR)', | 470 '<(PRODUCT_DIR)', |
456 ], | 471 ], |
457 }, | 472 }, |
458 ] | 473 ] |
459 }] | 474 }] |
460 ], | 475 ], |
461 } | 476 } |
OLD | NEW |