| 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/chromeos/display_mode.cc', | |
| 24 'types/chromeos/display_mode.h', | |
| 25 'types/chromeos/display_snapshot.cc', | |
| 26 'types/chromeos/display_snapshot.h', | |
| 27 'types/chromeos/native_display_delegate.h', | |
| 28 'types/chromeos/native_display_observer.h', | |
| 29 'types/display_constants.h', | 23 'types/display_constants.h', |
| 24 'types/display_mode.cc', |
| 25 'types/display_mode.h', |
| 26 'types/display_snapshot.cc', |
| 27 'types/display_snapshot.h', |
| 30 'types/display_types_export.h', | 28 'types/display_types_export.h', |
| 29 'types/native_display_delegate.h', |
| 30 'types/native_display_observer.h', |
| 31 ], | 31 ], |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 # GN version: //ui/display | 34 # GN version: //ui/display |
| 35 'target_name': 'display', | 35 'target_name': 'display', |
| 36 'type': '<(component)', | 36 'type': '<(component)', |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 '../../base/base.gyp:base', | 38 '../../base/base.gyp:base', |
| 39 '../../ui/gfx/gfx.gyp:gfx', | 39 '../../ui/gfx/gfx.gyp:gfx', |
| 40 '../../ui/gfx/gfx.gyp:gfx_geometry', | 40 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 'dependencies': [ | 170 'dependencies': [ |
| 171 'display', | 171 'display', |
| 172 'display_test_util', | 172 'display_test_util', |
| 173 'display_types', | 173 'display_types', |
| 174 ], | 174 ], |
| 175 }], | 175 }], |
| 176 ], | 176 ], |
| 177 }, | 177 }, |
| 178 ], | 178 ], |
| 179 } | 179 } |
| OLD | NEW |