Home | History | Annotate | Download | only in display
      1 # Copyright 2014 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 # TODO(dnicoara) Move this into its own executable. (Currently it is built as
      6 # part of ui_unittests.)
      7 {
      8   'dependencies': [
      9     '../base/base.gyp:test_support_base',
     10     '../testing/gtest.gyp:gtest',
     11     '../ui/display/display.gyp:display_util',
     12     '../ui/gfx/gfx.gyp:gfx_geometry',
     13   ],
     14   'sources': [
     15     'chromeos/display_configurator_unittest.cc',
     16     'chromeos/touchscreen_delegate_impl_unittest.cc',
     17     'chromeos/x11/display_util_x11_unittest.cc',
     18     'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc',
     19     'util/display_util_unittest.cc',
     20     'util/edid_parser_unittest.cc',
     21   ],
     22   'conditions': [
     23     # TODO(dnicoara) When we add non-chromeos display code this dependency can
     24     # be added to the above list. For now, keep it here since Win & Android do
     25     # not like empty libraries.
     26     ['chromeos == 1', {
     27       'dependencies': [
     28         '../ui/display/display.gyp:display',
     29         '../ui/display/display.gyp:display_test_util',
     30         '../ui/display/display.gyp:display_types',
     31       ],
     32     }],
     33   ],
     34 }
     35