OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'external_ozone_platforms': [], | 8 'external_ozone_platforms': [], |
9 'external_ozone_platform_files': [], | 9 'external_ozone_platform_files': [], |
10 'external_ozone_platform_deps': [], | 10 'external_ozone_platform_deps': [], |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 # common/chromeos files are excluded automatically when building with | 83 # common/chromeos files are excluded automatically when building with |
84 # chromeos=0, by exclusion rules in filename_rules.gypi due to the | 84 # chromeos=0, by exclusion rules in filename_rules.gypi due to the |
85 # 'chromeos' folder name. | 85 # 'chromeos' folder name. |
86 'common/chromeos/native_display_delegate_ozone.cc', | 86 'common/chromeos/native_display_delegate_ozone.cc', |
87 'common/chromeos/native_display_delegate_ozone.h', | 87 'common/chromeos/native_display_delegate_ozone.h', |
88 'common/chromeos/touchscreen_device_manager_ozone.cc', | 88 'common/chromeos/touchscreen_device_manager_ozone.cc', |
89 'common/chromeos/touchscreen_device_manager_ozone.h', | 89 'common/chromeos/touchscreen_device_manager_ozone.h', |
90 'common/gpu/ozone_gpu_message_generator.cc', | 90 'common/gpu/ozone_gpu_message_generator.cc', |
91 'common/gpu/ozone_gpu_message_generator.h', | 91 'common/gpu/ozone_gpu_message_generator.h', |
| 92 'common/gpu/ozone_gpu_message_params.cc', |
| 93 'common/gpu/ozone_gpu_message_params.h', |
| 94 'common/gpu/ozone_gpu_messages.h', |
92 'ozone_platform.cc', | 95 'ozone_platform.cc', |
93 'ozone_platform.h', | 96 'ozone_platform.h', |
94 'ozone_switches.cc', | 97 'ozone_switches.cc', |
95 'ozone_switches.h', | 98 'ozone_switches.h', |
96 'platform_selection.cc', | 99 'platform_selection.cc', |
97 'platform_selection.h', | 100 'platform_selection.h', |
98 '<@(external_ozone_platform_files)', | 101 '<@(external_ozone_platform_files)', |
99 ], | 102 ], |
100 'actions': [ | 103 'actions': [ |
101 { | 104 { |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 'platform/dri/gbm.gypi', | 197 'platform/dri/gbm.gypi', |
195 ], | 198 ], |
196 }], | 199 }], |
197 ['<(ozone_platform_test) == 1', { | 200 ['<(ozone_platform_test) == 1', { |
198 'includes': [ | 201 'includes': [ |
199 'platform/test/test.gypi', | 202 'platform/test/test.gypi', |
200 ], | 203 ], |
201 }], | 204 }], |
202 ], | 205 ], |
203 } | 206 } |
OLD | NEW |