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 26 matching lines...) Expand all Loading... |
37 ], | 37 ], |
38 'conditions': [ | 38 'conditions': [ |
39 ['OS=="ios"', { | 39 ['OS=="ios"', { |
40 'dependencies': [ | 40 'dependencies': [ |
41 '../ios/ios.gyp:*', | 41 '../ios/ios.gyp:*', |
42 # NOTE: This list of targets is present because | 42 # NOTE: This list of targets is present because |
43 # mojo_base.gyp:mojo_base cannot be built on iOS, as | 43 # mojo_base.gyp:mojo_base cannot be built on iOS, as |
44 # javascript-related targets cause v8 to be built. | 44 # javascript-related targets cause v8 to be built. |
45 '../mojo/mojo_base.gyp:mojo_common_lib', | 45 '../mojo/mojo_base.gyp:mojo_common_lib', |
46 '../mojo/mojo_base.gyp:mojo_common_unittests', | 46 '../mojo/mojo_base.gyp:mojo_common_unittests', |
47 '../mojo/mojo_base.gyp:mojo_cpp_bindings', | |
48 '../mojo/mojo_base.gyp:mojo_public_bindings_unittests', | 47 '../mojo/mojo_base.gyp:mojo_public_bindings_unittests', |
49 '../mojo/mojo_base.gyp:mojo_public_environment_unittests', | 48 '../mojo/mojo_base.gyp:mojo_public_environment_unittests', |
50 '../mojo/mojo_base.gyp:mojo_public_system_perftests', | 49 '../mojo/mojo_base.gyp:mojo_public_system_perftests', |
51 '../mojo/mojo_base.gyp:mojo_public_system_unittests', | 50 '../mojo/mojo_base.gyp:mojo_public_system_unittests', |
52 '../mojo/mojo_base.gyp:mojo_public_test_utils', | |
53 '../mojo/mojo_base.gyp:mojo_public_utility_unittests', | 51 '../mojo/mojo_base.gyp:mojo_public_utility_unittests', |
54 '../mojo/mojo_base.gyp:mojo_system', | |
55 '../mojo/mojo_base.gyp:mojo_system_impl', | 52 '../mojo/mojo_base.gyp:mojo_system_impl', |
56 '../mojo/mojo_base.gyp:mojo_system_unittests', | 53 '../mojo/mojo_base.gyp:mojo_system_unittests', |
| 54 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings', |
| 55 '../mojo/public/mojo_public.gyp:mojo_public_test_utils', |
| 56 '../mojo/public/mojo_public.gyp:mojo_system', |
57 '../google_apis/google_apis.gyp:google_apis_unittests', | 57 '../google_apis/google_apis.gyp:google_apis_unittests', |
58 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | 58 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
59 '../ui/base/ui_base_tests.gyp:ui_unittests', | 59 '../ui/base/ui_base_tests.gyp:ui_unittests', |
60 '../ui/ios/ui_ios_tests.gyp:ui_ios_unittests', | 60 '../ui/ios/ui_ios_tests.gyp:ui_ios_unittests', |
61 '../ui/gfx/gfx_tests.gyp:gfx_unittests', | 61 '../ui/gfx/gfx_tests.gyp:gfx_unittests', |
62 ], | 62 ], |
63 }], | 63 }], |
64 ['OS=="android"', { | 64 ['OS=="android"', { |
65 'dependencies': [ | 65 'dependencies': [ |
66 '../content/content_shell_and_tests.gyp:content_shell_apk', | 66 '../content/content_shell_and_tests.gyp:content_shell_apk', |
(...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1323 'dependencies': [ | 1323 'dependencies': [ |
1324 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1324 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1325 '../ui/views/views.gyp:views', | 1325 '../ui/views/views.gyp:views', |
1326 '../ui/views/views.gyp:views_unittests', | 1326 '../ui/views/views.gyp:views_unittests', |
1327 ], | 1327 ], |
1328 }, # target_name: macviews_builder | 1328 }, # target_name: macviews_builder |
1329 ], # targets | 1329 ], # targets |
1330 }], # os=='mac' and toolkit_views==1 | 1330 }], # os=='mac' and toolkit_views==1 |
1331 ], # conditions | 1331 ], # conditions |
1332 } | 1332 } |
OLD | NEW |