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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 # chromeos=0, by exclusion rules in filename_rules.gypi due to the | 42 # chromeos=0, by exclusion rules in filename_rules.gypi due to the |
43 # 'chromeos' folder name. | 43 # 'chromeos' folder name. |
44 'common/chromeos/native_display_delegate_ozone.cc', | 44 'common/chromeos/native_display_delegate_ozone.cc', |
45 'common/chromeos/native_display_delegate_ozone.h', | 45 'common/chromeos/native_display_delegate_ozone.h', |
46 'ozone_platform.cc', | 46 'ozone_platform.cc', |
47 'ozone_platform.h', | 47 'ozone_platform.h', |
48 'ozone_switches.cc', | 48 'ozone_switches.cc', |
49 'ozone_switches.h', | 49 'ozone_switches.h', |
50 '<@(external_ozone_platform_files)', | 50 '<@(external_ozone_platform_files)', |
51 ], | 51 ], |
52 'includes': [ | |
53 'ime/ime.gypi', | |
54 ], | |
55 'actions': [ | 52 'actions': [ |
56 { | 53 { |
57 'action_name': 'generate_ozone_platform_list', | 54 'action_name': 'generate_ozone_platform_list', |
58 'variables': { | 55 'variables': { |
59 'generator_path': 'generate_ozone_platform_list.py', | 56 'generator_path': 'generate_ozone_platform_list.py', |
60 }, | 57 }, |
61 'inputs': [ | 58 'inputs': [ |
62 '<(generator_path)', | 59 '<(generator_path)', |
63 ], | 60 ], |
64 'outputs': [ | 61 'outputs': [ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'platform/egltest/egltest.gypi', | 100 'platform/egltest/egltest.gypi', |
104 ], | 101 ], |
105 }], | 102 }], |
106 ['<(ozone_platform_test) == 1', { | 103 ['<(ozone_platform_test) == 1', { |
107 'includes': [ | 104 'includes': [ |
108 'platform/test/test.gypi', | 105 'platform/test/test.gypi', |
109 ], | 106 ], |
110 }], | 107 }], |
111 ], | 108 ], |
112 } | 109 } |
OLD | NEW |