OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 # GN version: //ui/display/types | 11 # GN version: //ui/display/types |
12 'target_name': 'display_types', | 12 'target_name': 'display_types', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../ui/gfx/gfx.gyp:gfx_geometry', | 16 '../../ui/gfx/gfx.gyp:gfx_geometry', |
17 ], | 17 ], |
18 'defines': [ | 18 'defines': [ |
19 'DISPLAY_TYPES_IMPLEMENTATION', | 19 'DISPLAY_TYPES_IMPLEMENTATION', |
20 ], | 20 ], |
21 'sources': [ | 21 'sources': [ |
22 # Note: file list duplicated in GN build. | 22 # Note: file list duplicated in GN build. |
23 'types/display_constants.h', | 23 'types/display_constants.h', |
24 'types/display_mode.cc', | 24 'types/display_mode.cc', |
25 'types/display_mode.h', | 25 'types/display_mode.h', |
26 'types/display_snapshot.cc', | 26 'types/display_snapshot.cc', |
27 'types/display_snapshot.h', | 27 'types/display_snapshot.h', |
28 'types/display_types_export.h', | 28 'types/display_types_export.h', |
29 'types/gamma_ramp_rgb_entry.h', | |
30 'types/native_display_delegate.h', | 29 'types/native_display_delegate.h', |
31 'types/native_display_observer.h', | 30 'types/native_display_observer.h', |
32 ], | 31 ], |
33 }, | 32 }, |
34 { | 33 { |
35 # GN version: //ui/display | 34 # GN version: //ui/display |
36 'target_name': 'display', | 35 'target_name': 'display', |
37 'type': '<(component)', | 36 'type': '<(component)', |
38 'dependencies': [ | 37 'dependencies': [ |
39 '../../base/base.gyp:base', | 38 '../../base/base.gyp:base', |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 'display', | 214 'display', |
216 'display_test_support', | 215 'display_test_support', |
217 'display_test_util', | 216 'display_test_util', |
218 'display_types', | 217 'display_types', |
219 ], | 218 ], |
220 }], | 219 }], |
221 ], | 220 ], |
222 }, | 221 }, |
223 ], | 222 ], |
224 } | 223 } |
OLD | NEW |