| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 '<(platform_list_h_file)', | 77 '<(platform_list_h_file)', |
| 78 '<(constructor_list_cc_file)', | 78 '<(constructor_list_cc_file)', |
| 79 | 79 |
| 80 # common/chromeos files are excluded automatically when building with | 80 # common/chromeos files are excluded automatically when building with |
| 81 # chromeos=0, by exclusion rules in filename_rules.gypi due to the | 81 # chromeos=0, by exclusion rules in filename_rules.gypi due to the |
| 82 # 'chromeos' folder name. | 82 # 'chromeos' folder name. |
| 83 'common/chromeos/native_display_delegate_ozone.cc', | 83 'common/chromeos/native_display_delegate_ozone.cc', |
| 84 'common/chromeos/native_display_delegate_ozone.h', | 84 'common/chromeos/native_display_delegate_ozone.h', |
| 85 'common/chromeos/touchscreen_device_manager_ozone.cc', | 85 'common/chromeos/touchscreen_device_manager_ozone.cc', |
| 86 'common/chromeos/touchscreen_device_manager_ozone.h', | 86 'common/chromeos/touchscreen_device_manager_ozone.h', |
| 87 'common/gpu/ozone_gpu_message_generator.cc', |
| 88 'common/gpu/ozone_gpu_message_generator.h', |
| 87 'ozone_platform.cc', | 89 'ozone_platform.cc', |
| 88 'ozone_platform.h', | 90 'ozone_platform.h', |
| 89 'ozone_switches.cc', | 91 'ozone_switches.cc', |
| 90 'ozone_switches.h', | 92 'ozone_switches.h', |
| 91 'platform_selection.cc', | 93 'platform_selection.cc', |
| 92 'platform_selection.h', | 94 'platform_selection.h', |
| 93 '<@(external_ozone_platform_files)', | 95 '<@(external_ozone_platform_files)', |
| 94 ], | 96 ], |
| 95 'actions': [ | 97 'actions': [ |
| 96 { | 98 { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'platform/dri/gbm.gypi', | 192 'platform/dri/gbm.gypi', |
| 191 ], | 193 ], |
| 192 }], | 194 }], |
| 193 ['<(ozone_platform_test) == 1', { | 195 ['<(ozone_platform_test) == 1', { |
| 194 'includes': [ | 196 'includes': [ |
| 195 'platform/test/test.gypi', | 197 'platform/test/test.gypi', |
| 196 ], | 198 ], |
| 197 }], | 199 }], |
| 198 ], | 200 ], |
| 199 } | 201 } |
| OLD | NEW |