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 '../google_apis/google_apis.gyp:google_apis', | 9 '../google_apis/google_apis.gyp:google_apis', |
10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1349 ['toolkit_views==1', { | 1349 ['toolkit_views==1', { |
1350 'dependencies': [ | 1350 'dependencies': [ |
1351 '../ui/events/events.gyp:events', | 1351 '../ui/events/events.gyp:events', |
1352 ], | 1352 ], |
1353 }], | 1353 }], |
1354 ['OS!="win" and OS!="mac" and (OS!="linux" or use_udev==0)', { | 1354 ['OS!="win" and OS!="mac" and (OS!="linux" or use_udev==0)', { |
1355 'sources': [ | 1355 'sources': [ |
1356 'browser/gamepad/gamepad_platform_data_fetcher.cc', | 1356 'browser/gamepad/gamepad_platform_data_fetcher.cc', |
1357 ] | 1357 ] |
1358 }], | 1358 }], |
| 1359 # TODO(sky): conditional temporary until mojo is building on android and mac
. |
| 1360 ['OS=="win" or OS=="linux"', { |
| 1361 'dependencies': [ |
| 1362 '../mojo/mojo.gyp:mojo_system', |
| 1363 ], |
| 1364 }], |
1359 ['OS=="ios"', { | 1365 ['OS=="ios"', { |
1360 'sources/': [ | 1366 'sources/': [ |
1361 # iOS only needs a small portion of content; exclude all the | 1367 # iOS only needs a small portion of content; exclude all the |
1362 # implementation, and re-include what is used. | 1368 # implementation, and re-include what is used. |
1363 ['exclude', '\\.(cc|mm)$'], | 1369 ['exclude', '\\.(cc|mm)$'], |
1364 ['include', '_ios\\.(cc|mm)$'], | 1370 ['include', '_ios\\.(cc|mm)$'], |
1365 ['include', '^public/browser/browser_main_parts\\.cc$'], | 1371 ['include', '^public/browser/browser_main_parts\\.cc$'], |
1366 ['include', '^public/browser/content_browser_client\\.cc$'], | 1372 ['include', '^public/browser/content_browser_client\\.cc$'], |
1367 ['include', '^public/browser/favicon_status\\.cc$'], | 1373 ['include', '^public/browser/favicon_status\\.cc$'], |
1368 ['include', '^public/browser/navigation_details\\.cc$'], | 1374 ['include', '^public/browser/navigation_details\\.cc$'], |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1698 '../build/linux/system.gyp:dbus', | 1704 '../build/linux/system.gyp:dbus', |
1699 '../dbus/dbus.gyp:dbus', | 1705 '../dbus/dbus.gyp:dbus', |
1700 ], | 1706 ], |
1701 }, { # OS != "linux" or use_dbus==0 | 1707 }, { # OS != "linux" or use_dbus==0 |
1702 'sources!': [ | 1708 'sources!': [ |
1703 'browser/geolocation/wifi_data_provider_linux.cc', | 1709 'browser/geolocation/wifi_data_provider_linux.cc', |
1704 ], | 1710 ], |
1705 }], | 1711 }], |
1706 ], | 1712 ], |
1707 } | 1713 } |
OLD | NEW |