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 22 matching lines...) Expand all Loading... |
33 'sources': [ | 33 'sources': [ |
34 '<(platform_list_file)', | 34 '<(platform_list_file)', |
35 'ozone_platform.cc', | 35 'ozone_platform.cc', |
36 'ozone_platform.h', | 36 'ozone_platform.h', |
37 'ozone_switches.cc', | 37 'ozone_switches.cc', |
38 'ozone_switches.h', | 38 'ozone_switches.h', |
39 'platform/dri/ozone_platform_dri.cc', | 39 'platform/dri/ozone_platform_dri.cc', |
40 'platform/dri/ozone_platform_dri.h', | 40 'platform/dri/ozone_platform_dri.h', |
41 'platform/dri/cursor_factory_evdev_dri.cc', | 41 'platform/dri/cursor_factory_evdev_dri.cc', |
42 'platform/dri/cursor_factory_evdev_dri.h', | 42 'platform/dri/cursor_factory_evdev_dri.h', |
| 43 'platform/dri/ozone_window_dri.cc', |
| 44 'platform/dri/ozone_window_dri.h', |
| 45 'platform/dri/window_factory_dri.cc', |
| 46 'platform/dri/window_factory_dri.h', |
43 'platform/test/ozone_platform_test.cc', | 47 'platform/test/ozone_platform_test.cc', |
44 'platform/test/ozone_platform_test.h', | 48 'platform/test/ozone_platform_test.h', |
| 49 'window/ozone_window.cc', |
| 50 'window/ozone_window.h', |
| 51 'window/window_factory_ozone.cc', |
| 52 'window/window_factory_ozone.h', |
45 '<@(external_ozone_platform_files)', | 53 '<@(external_ozone_platform_files)', |
46 ], | 54 ], |
47 'includes': [ | 55 'includes': [ |
48 'ime/ime.gypi', | 56 'ime/ime.gypi', |
49 ], | 57 ], |
50 'actions': [ | 58 'actions': [ |
51 { | 59 { |
52 'action_name': 'generate_ozone_platform_list', | 60 'action_name': 'generate_ozone_platform_list', |
53 'variables': { | 61 'variables': { |
54 'generator_path': 'generate_ozone_platform_list.py', | 62 'generator_path': 'generate_ozone_platform_list.py', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 } | 96 } |
89 }, { # ozone_platform_test==0 | 97 }, { # ozone_platform_test==0 |
90 'sources/': [ | 98 'sources/': [ |
91 ['exclude', '^platform/test/'], | 99 ['exclude', '^platform/test/'], |
92 ] | 100 ] |
93 }], | 101 }], |
94 ] | 102 ] |
95 }, | 103 }, |
96 ], | 104 ], |
97 } | 105 } |
OLD | NEW |