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 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
898 'targets': [ | 898 'targets': [ |
899 { | 899 { |
900 # GN version: //ui/views:macviews_interactive_ui_tests | 900 # GN version: //ui/views:macviews_interactive_ui_tests |
901 'target_name': 'macviews_interactive_ui_tests', | 901 'target_name': 'macviews_interactive_ui_tests', |
902 'type': 'executable', | 902 'type': 'executable', |
903 'dependencies': [ | 903 'dependencies': [ |
904 '../../base/base.gyp:base', | 904 '../../base/base.gyp:base', |
905 '../../base/base.gyp:test_support_base', | 905 '../../base/base.gyp:test_support_base', |
906 '../../skia/skia.gyp:skia', | 906 '../../skia/skia.gyp:skia', |
907 '../../testing/gtest.gyp:gtest', | 907 '../../testing/gtest.gyp:gtest', |
908 '../base/ui_base.gyp:ui_base_test_support', | |
tapted
2015/05/13 07:26:34
also needs a .gn change
jackhou1
2015/05/14 04:38:34
Done.
| |
908 '../compositor/compositor.gyp:compositor_test_support', | 909 '../compositor/compositor.gyp:compositor_test_support', |
909 '../resources/ui_resources.gyp:ui_resources', | 910 '../resources/ui_resources.gyp:ui_resources', |
910 '../resources/ui_resources.gyp:ui_test_pak', | 911 '../resources/ui_resources.gyp:ui_test_pak', |
911 '../strings/ui_strings.gyp:ui_strings', | 912 '../strings/ui_strings.gyp:ui_strings', |
912 'views', | 913 'views', |
913 'views_test_support', | 914 'views_test_support', |
914 ], | 915 ], |
915 'sources': [ | 916 'sources': [ |
916 'cocoa/bridged_native_widget_interactive_uitest.mm', | 917 'cocoa/bridged_native_widget_interactive_uitest.mm', |
917 'run_all_unittests.cc', | 918 'run_all_unittests.cc', |
918 'widget/native_widget_mac_interactive_uitest.mm', | 919 'widget/native_widget_mac_interactive_uitest.mm', |
919 ], | 920 ], |
920 'conditions': [ | 921 'conditions': [ |
921 ['use_aura == 1', { | 922 ['use_aura == 1', { |
922 'dependencies': [ | 923 'dependencies': [ |
923 '../aura/aura.gyp:aura', | 924 '../aura/aura.gyp:aura', |
924 '../wm/wm.gyp:wm', | 925 '../wm/wm.gyp:wm', |
925 ], | 926 ], |
926 }], | 927 }], |
927 ], | 928 ], |
928 }, # target_name: macviews_interactive_ui_tests | 929 }, # target_name: macviews_interactive_ui_tests |
929 ], # targets | 930 ], # targets |
930 }], | 931 }], |
931 ], # conditions | 932 ], # conditions |
932 } | 933 } |
OLD | NEW |