| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 # Sources lists shared with GN build. | 7 # Sources lists shared with GN build. |
| 8 'views_sources': [ | 8 'views_sources': [ |
| 9 'accessibility/native_view_accessibility.cc', | 9 'accessibility/native_view_accessibility.cc', |
| 10 'accessibility/native_view_accessibility.h', | 10 'accessibility/native_view_accessibility.h', |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 'widget/window_reorderer_unittest.cc', | 924 'widget/window_reorderer_unittest.cc', |
| 925 ], | 925 ], |
| 926 'dependencies': [ | 926 'dependencies': [ |
| 927 '../accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wi
dget_mac', | 927 '../accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wi
dget_mac', |
| 928 ], | 928 ], |
| 929 }], | 929 }], |
| 930 ], | 930 ], |
| 931 }, # target_name: views_unittests | 931 }, # target_name: views_unittests |
| 932 ], # targets | 932 ], # targets |
| 933 'conditions': [ | 933 'conditions': [ |
| 934 ['test_isolation_mode != "noop"', { |
| 935 'targets': [ |
| 936 { |
| 937 'target_name': 'views_unittests_run', |
| 938 'type': 'none', |
| 939 'dependencies': [ |
| 940 'views_unittests', |
| 941 ], |
| 942 'includes': [ |
| 943 '../../build/isolate.gypi', |
| 944 ], |
| 945 'sources': [ |
| 946 'views_unittests.isolate', |
| 947 ], |
| 948 'conditions': [ |
| 949 ['use_x11==1', |
| 950 { |
| 951 'dependencies': [ |
| 952 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 953 ], |
| 954 } |
| 955 ], |
| 956 ], |
| 957 }, |
| 958 ], |
| 959 }], |
| 934 ['OS=="mac"', { | 960 ['OS=="mac"', { |
| 935 'targets': [ | 961 'targets': [ |
| 936 { | 962 { |
| 937 # GN version: //ui/views:macviews_interactive_ui_tests | 963 # GN version: //ui/views:macviews_interactive_ui_tests |
| 938 'target_name': 'macviews_interactive_ui_tests', | 964 'target_name': 'macviews_interactive_ui_tests', |
| 939 'type': 'executable', | 965 'type': 'executable', |
| 940 'dependencies': [ | 966 'dependencies': [ |
| 941 '../../base/base.gyp:base', | 967 '../../base/base.gyp:base', |
| 942 '../../base/base.gyp:test_support_base', | 968 '../../base/base.gyp:test_support_base', |
| 943 '../../skia/skia.gyp:skia', | 969 '../../skia/skia.gyp:skia', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 963 '../aura/aura.gyp:aura', | 989 '../aura/aura.gyp:aura', |
| 964 '../wm/wm.gyp:wm', | 990 '../wm/wm.gyp:wm', |
| 965 ], | 991 ], |
| 966 }], | 992 }], |
| 967 ], | 993 ], |
| 968 }, # target_name: macviews_interactive_ui_tests | 994 }, # target_name: macviews_interactive_ui_tests |
| 969 ], # targets | 995 ], # targets |
| 970 }], | 996 }], |
| 971 ], # conditions | 997 ], # conditions |
| 972 } | 998 } |
| OLD | NEW |