| Index: ui/display/display_unittests.gypi
|
| diff --git a/ui/display/display_unittests.gypi b/ui/display/display_unittests.gypi
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3d2de98ad8303a1e1b08065fd9bf079ebee5494b
|
| --- /dev/null
|
| +++ b/ui/display/display_unittests.gypi
|
| @@ -0,0 +1,28 @@
|
| +# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +# TODO(dnicoara) Move this into its own executable. (Currently it is built as
|
| +# part of ui_unittests.)
|
| +{
|
| + 'dependencies': [
|
| + '../base/base.gyp:test_support_base',
|
| + '../testing/gtest.gyp:gtest',
|
| + '../ui/gfx/gfx.gyp:gfx_geometry',
|
| + ],
|
| + 'sources': [
|
| + 'chromeos/output_configurator_unittest.cc',
|
| + 'chromeos/x11/display_util_unittest.cc',
|
| + 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc',
|
| + ],
|
| + 'conditions': [
|
| + # TODO(dnicoara) When we add non-chromeos display code this dependency can
|
| + # be added to the above list. For now, keep it here since Win & Android do
|
| + # not like empty libraries.
|
| + ['chromeos == 1', {
|
| + 'dependencies': [
|
| + '../ui/display/display.gyp:display',
|
| + ],
|
| + }],
|
| + ],
|
| +}
|
|
|