| 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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 ['OS == "win"', { | 781 ['OS == "win"', { |
| 782 'sources': [ '<@(views_desktop_aura_win_sources)' ], | 782 'sources': [ '<@(views_desktop_aura_win_sources)' ], |
| 783 }], | 783 }], |
| 784 ['use_ozone==1', { | 784 ['use_ozone==1', { |
| 785 'sources': [ '<@(views_desktop_aura_ozone_sources)' ], | 785 'sources': [ '<@(views_desktop_aura_ozone_sources)' ], |
| 786 }], | 786 }], |
| 787 ], | 787 ], |
| 788 }], | 788 }], |
| 789 ['OS=="mac"', { | 789 ['OS=="mac"', { |
| 790 'dependencies': [ | 790 'dependencies': [ |
| 791 '../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp
:google_toolbox_for_mac', |
| 791 '../accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wi
dget_mac', | 792 '../accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wi
dget_mac', |
| 792 ], | 793 ], |
| 793 'link_settings': { | 794 'link_settings': { |
| 794 'libraries': [ | 795 'libraries': [ |
| 795 # Required by bridged_native_widget.mm. | 796 # Required by bridged_native_widget.mm. |
| 796 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 797 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 797 ], | 798 ], |
| 799 'conditions': [ |
| 800 ['component=="static_library"', { |
| 801 # Needed to link to Obj-C static libraries. |
| 802 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
| 803 }], |
| 804 ], |
| 798 }, | 805 }, |
| 799 }], | 806 }], |
| 800 ], | 807 ], |
| 801 }, # target_name: views | 808 }, # target_name: views |
| 802 { | 809 { |
| 803 # GN version: //ui/views:test_support | 810 # GN version: //ui/views:test_support |
| 804 'target_name': 'views_test_support', | 811 'target_name': 'views_test_support', |
| 805 'type': 'static_library', | 812 'type': 'static_library', |
| 806 'dependencies': [ | 813 'dependencies': [ |
| 807 '../../base/base.gyp:base', | 814 '../../base/base.gyp:base', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 ], | 945 ], |
| 939 }], | 946 }], |
| 940 ['OS=="mac"', { | 947 ['OS=="mac"', { |
| 941 # views_unittests not yet compiling on Mac. http://crbug.com/378134 | 948 # views_unittests not yet compiling on Mac. http://crbug.com/378134 |
| 942 'sources!': [ | 949 'sources!': [ |
| 943 'bubble/bubble_window_targeter_unittest.cc', | 950 'bubble/bubble_window_targeter_unittest.cc', |
| 944 'controls/native/native_view_host_unittest.cc', | 951 'controls/native/native_view_host_unittest.cc', |
| 945 'widget/window_reorderer_unittest.cc', | 952 'widget/window_reorderer_unittest.cc', |
| 946 ], | 953 ], |
| 947 'dependencies': [ | 954 'dependencies': [ |
| 955 '../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp
:google_toolbox_for_mac', |
| 948 '../accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wi
dget_mac', | 956 '../accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wi
dget_mac', |
| 949 ], | 957 ], |
| 950 }], | 958 }], |
| 951 ], | 959 ], |
| 952 }, # target_name: views_unittests | 960 }, # target_name: views_unittests |
| 953 ], # targets | 961 ], # targets |
| 954 'conditions': [ | 962 'conditions': [ |
| 955 ['test_isolation_mode != "noop"', { | 963 ['test_isolation_mode != "noop"', { |
| 956 'targets': [ | 964 'targets': [ |
| 957 { | 965 { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 '../aura/aura.gyp:aura', | 1018 '../aura/aura.gyp:aura', |
| 1011 '../wm/wm.gyp:wm', | 1019 '../wm/wm.gyp:wm', |
| 1012 ], | 1020 ], |
| 1013 }], | 1021 }], |
| 1014 ], | 1022 ], |
| 1015 }, # target_name: macviews_interactive_ui_tests | 1023 }, # target_name: macviews_interactive_ui_tests |
| 1016 ], # targets | 1024 ], # targets |
| 1017 }], | 1025 }], |
| 1018 ], # conditions | 1026 ], # conditions |
| 1019 } | 1027 } |
| OLD | NEW |