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 20 matching lines...) Expand all Loading... |
31 ], | 31 ], |
32 }, | 32 }, |
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/gbm/ozone_platform_gbm.cc', |
| 42 'platform/gbm/ozone_platform_gbm.h', |
41 'platform/test/ozone_platform_test.cc', | 43 'platform/test/ozone_platform_test.cc', |
42 'platform/test/ozone_platform_test.h', | 44 'platform/test/ozone_platform_test.h', |
43 '<@(external_ozone_platform_files)', | 45 '<@(external_ozone_platform_files)', |
44 ], | 46 ], |
45 'includes': [ | 47 'includes': [ |
46 'ime/ime.gypi', | 48 'ime/ime.gypi', |
47 ], | 49 ], |
48 'actions': [ | 50 'actions': [ |
49 { | 51 { |
50 'action_name': 'generate_ozone_platform_list', | 52 'action_name': 'generate_ozone_platform_list', |
(...skipping 20 matching lines...) Expand all Loading... |
71 'variables': { | 73 'variables': { |
72 'ozone_platforms': [ | 74 'ozone_platforms': [ |
73 'dri' | 75 'dri' |
74 ] | 76 ] |
75 } | 77 } |
76 }, { # ozone_platform_dri==0 | 78 }, { # ozone_platform_dri==0 |
77 'sources/': [ | 79 'sources/': [ |
78 ['exclude', '^platform/dri/'], | 80 ['exclude', '^platform/dri/'], |
79 ] | 81 ] |
80 }], | 82 }], |
| 83 ['<(ozone_platform_gbm)==1', { |
| 84 'variables': { |
| 85 'ozone_platforms': [ |
| 86 'gbm' |
| 87 ] |
| 88 } |
| 89 }, { # ozone_platform_gbm==0 |
| 90 'sources/': [ |
| 91 ['exclude', '^platform/gbm/'], |
| 92 ] |
| 93 }], |
81 ['<(ozone_platform_test)==1', { | 94 ['<(ozone_platform_test)==1', { |
82 'variables': { | 95 'variables': { |
83 'ozone_platforms': [ | 96 'ozone_platforms': [ |
84 'test' | 97 'test' |
85 ], | 98 ], |
86 } | 99 } |
87 }, { # ozone_platform_test==0 | 100 }, { # ozone_platform_test==0 |
88 'sources/': [ | 101 'sources/': [ |
89 ['exclude', '^platform/test/'], | 102 ['exclude', '^platform/test/'], |
90 ] | 103 ] |
91 }], | 104 }], |
92 ] | 105 ] |
93 }, | 106 }, |
94 ], | 107 ], |
95 } | 108 } |
OLD | NEW |