| 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', |
| 29 'types/native_display_delegate.h', | 30 'types/native_display_delegate.h', |
| 30 'types/native_display_observer.h', | 31 'types/native_display_observer.h', |
| 31 ], | 32 ], |
| 32 }, | 33 }, |
| 33 { | 34 { |
| 34 # GN version: //ui/display | 35 # GN version: //ui/display |
| 35 'target_name': 'display', | 36 'target_name': 'display', |
| 36 'type': '<(component)', | 37 'type': '<(component)', |
| 37 'dependencies': [ | 38 'dependencies': [ |
| 38 '../../base/base.gyp:base', | 39 '../../base/base.gyp:base', |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 'display', | 215 'display', |
| 215 'display_test_support', | 216 'display_test_support', |
| 216 'display_test_util', | 217 'display_test_util', |
| 217 'display_types', | 218 'display_types', |
| 218 ], | 219 ], |
| 219 }], | 220 }], |
| 220 ], | 221 ], |
| 221 }, | 222 }, |
| 222 ], | 223 ], |
| 223 } | 224 } |
| OLD | NEW |