| 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 'variables': { | 6 'variables': { |
| 7 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
| 8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
| 9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
| 10 }, | 10 }, |
| (...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 '../sync/sync.gyp:sync_unit_tests_apk', | 854 '../sync/sync.gyp:sync_unit_tests_apk', |
| 855 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit
tests_apk', | 855 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit
tests_apk', |
| 856 '../ui/base/ui_base_tests.gyp:ui_base_unittests_apk', | 856 '../ui/base/ui_base_tests.gyp:ui_base_unittests_apk', |
| 857 '../ui/events/events.gyp:events_unittests_apk', | 857 '../ui/events/events.gyp:events_unittests_apk', |
| 858 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', | 858 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', |
| 859 ], | 859 ], |
| 860 'conditions': [ | 860 'conditions': [ |
| 861 ['enable_webrtc==1 and "<(libpeer_target_type)"=="static_library"',
{ | 861 ['enable_webrtc==1 and "<(libpeer_target_type)"=="static_library"',
{ |
| 862 'dependencies': [ | 862 'dependencies': [ |
| 863 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk', | 863 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk', |
| 864 '../components/devtools_bridge.gyp:libdevtools_bridge_browsertes
ts', |
| 864 ], | 865 ], |
| 865 }], | 866 }], |
| 866 ], | 867 ], |
| 867 }, | 868 }, |
| 868 { | 869 { |
| 869 # WebRTC Chromium tests to run on Android. | 870 # WebRTC Chromium tests to run on Android. |
| 870 'target_name': 'android_builder_chromium_webrtc', | 871 'target_name': 'android_builder_chromium_webrtc', |
| 871 'type': 'none', | 872 'type': 'none', |
| 872 'dependencies': [ | 873 'dependencies': [ |
| 873 '../build/android/pylib/device/commands/commands.gyp:chromium_comman
ds', | 874 '../build/android/pylib/device/commands/commands.gyp:chromium_comman
ds', |
| 874 '../content/content_shell_and_tests.gyp:content_browsertests', | 875 '../content/content_shell_and_tests.gyp:content_browsertests', |
| 875 '../tools/android/android_tools.gyp:android_tools', | 876 '../tools/android/android_tools.gyp:android_tools', |
| 876 '../tools/android/android_tools.gyp:memconsumer', | 877 '../tools/android/android_tools.gyp:memconsumer', |
| 877 # Unit test bundles packaged as an apk. | 878 # Unit test bundles packaged as an apk. |
| 878 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk', | 879 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk', |
| 880 '../components/devtools_bridge.gyp:libdevtools_bridge_browsertests', |
| 879 '../content/content_shell_and_tests.gyp:content_browsertests_apk', | 881 '../content/content_shell_and_tests.gyp:content_browsertests_apk', |
| 880 ], | 882 ], |
| 881 }, # target_name: android_builder_chromium_webrtc | 883 }, # target_name: android_builder_chromium_webrtc |
| 882 ], # targets | 884 ], # targets |
| 883 }], # OS="android" | 885 }], # OS="android" |
| 884 ['OS=="mac"', { | 886 ['OS=="mac"', { |
| 885 'targets': [ | 887 'targets': [ |
| 886 { | 888 { |
| 887 # Target to build everything plus the dmg. We don't put the dmg | 889 # Target to build everything plus the dmg. We don't put the dmg |
| 888 # in the All target because developers really don't need it. | 890 # in the All target because developers really don't need it. |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 'dependencies': [ | 1374 'dependencies': [ |
| 1373 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1375 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1374 '../ui/views/views.gyp:views', | 1376 '../ui/views/views.gyp:views', |
| 1375 '../ui/views/views.gyp:views_unittests', | 1377 '../ui/views/views.gyp:views_unittests', |
| 1376 ], | 1378 ], |
| 1377 }, # target_name: macviews_builder | 1379 }, # target_name: macviews_builder |
| 1378 ], # targets | 1380 ], # targets |
| 1379 }], # os=='mac' and toolkit_views==1 | 1381 }], # os=='mac' and toolkit_views==1 |
| 1380 ], # conditions | 1382 ], # conditions |
| 1381 } | 1383 } |
| OLD | NEW |