Chromium Code Reviews| 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'. | 8 # compilation targets to 'All'. |
| 9 'app_targets%': [], | 9 'app_targets%': [], |
| 10 # For Android-specific targets. | 10 # For Android-specific targets. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 46 'dependencies': [ | 46 'dependencies': [ |
| 47 '../ui/touch_selection/ui_touch_selection.gyp:*', | 47 '../ui/touch_selection/ui_touch_selection.gyp:*', |
| 48 ], | 48 ], |
| 49 }], | 49 }], |
| 50 ['OS=="ios"', { | 50 ['OS=="ios"', { |
| 51 'dependencies': [ | 51 'dependencies': [ |
| 52 '../ios/ios.gyp:*', | 52 '../ios/ios.gyp:*', |
| 53 # NOTE: This list of targets is present because | 53 # NOTE: This list of targets is present because |
| 54 # mojo_base.gyp:mojo_base cannot be built on iOS, as | 54 # mojo_base.gyp:mojo_base cannot be built on iOS, as |
| 55 # javascript-related targets cause v8 to be built. | 55 # javascript-related targets cause v8 to be built. |
| 56 '../mojo/mojo_base.gyp:mojo_common_lib', | 56 # TODO(crbug.com/605508): http://crrev.com/1832703002 introduced |
| 57 '../mojo/mojo_base.gyp:mojo_common_unittests', | 57 # a dependency on //third_party/WebKit that cause build failures |
| 58 '../mojo/mojo_edk.gyp:mojo_system_impl', | 58 # when using Xcode version of clang (loading clang plugin fails). |
| 59 '../mojo/mojo_edk_tests.gyp:mojo_public_bindings_unittests', | 59 # '../mojo/mojo_base.gyp:mojo_common_lib', |
| 60 '../mojo/mojo_edk_tests.gyp:mojo_public_system_unittests', | 60 # '../mojo/mojo_base.gyp:mojo_common_unittests', |
| 61 '../mojo/mojo_edk_tests.gyp:mojo_system_unittests', | 61 # '../mojo/mojo_edk.gyp:mojo_system_impl', |
| 62 '../mojo/mojo_public.gyp:mojo_cpp_bindings', | 62 # '../mojo/mojo_edk_tests.gyp:mojo_public_bindings_unittests', |
|
Ken Rockot(use gerrit already)
2016/04/21 15:05:16
Pretty sure this is the only target here that actu
| |
| 63 '../mojo/mojo_public.gyp:mojo_public_test_utils', | 63 # '../mojo/mojo_edk_tests.gyp:mojo_public_system_unittests', |
| 64 '../mojo/mojo_public.gyp:mojo_system', | 64 # '../mojo/mojo_edk_tests.gyp:mojo_system_unittests', |
| 65 # '../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 66 # '../mojo/mojo_public.gyp:mojo_public_test_utils', | |
| 67 # '../mojo/mojo_public.gyp:mojo_system', | |
| 65 '../google_apis/google_apis.gyp:google_apis_unittests', | 68 '../google_apis/google_apis.gyp:google_apis_unittests', |
| 66 '../skia/skia_tests.gyp:skia_unittests', | 69 '../skia/skia_tests.gyp:skia_unittests', |
| 67 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | 70 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 68 '../ui/gfx/gfx_tests.gyp:gfx_unittests', | 71 '../ui/gfx/gfx_tests.gyp:gfx_unittests', |
| 69 ], | 72 ], |
| 70 }, { # 'OS!="ios" | 73 }, { # 'OS!="ios" |
| 71 'dependencies': [ | 74 'dependencies': [ |
| 72 '../content/content.gyp:*', | 75 '../content/content.gyp:*', |
| 73 '../device/bluetooth/bluetooth.gyp:*', | 76 '../device/bluetooth/bluetooth.gyp:*', |
| 74 '../device/device_tests.gyp:*', | 77 '../device/device_tests.gyp:*', |
| (...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1376 'dependencies': [ | 1379 'dependencies': [ |
| 1377 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1380 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1378 '../ui/views/views.gyp:views', | 1381 '../ui/views/views.gyp:views', |
| 1379 '../ui/views/views.gyp:views_unittests', | 1382 '../ui/views/views.gyp:views_unittests', |
| 1380 ], | 1383 ], |
| 1381 }, # target_name: macviews_builder | 1384 }, # target_name: macviews_builder |
| 1382 ], # targets | 1385 ], # targets |
| 1383 }], # os=='mac' and toolkit_views==1 | 1386 }], # os=='mac' and toolkit_views==1 |
| 1384 ], # conditions | 1387 ], # conditions |
| 1385 } | 1388 } |
| OLD | NEW |