OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 ], | 84 ], |
85 }], | 85 }], |
86 ['OS != "ios"', { | 86 ['OS != "ios"', { |
87 'includes': [ | 87 'includes': [ |
88 'app_modal.gypi', | 88 'app_modal.gypi', |
89 'browsing_data.gypi', | 89 'browsing_data.gypi', |
90 'cdm.gypi', | 90 'cdm.gypi', |
91 'devtools_http_handler.gypi', | 91 'devtools_http_handler.gypi', |
92 'navigation_interception.gypi', | 92 'navigation_interception.gypi', |
93 'power.gypi', | 93 'power.gypi', |
| 94 'scheduler.gypi', |
94 'visitedlink.gypi', | 95 'visitedlink.gypi', |
95 'web_cache.gypi', | 96 'web_cache.gypi', |
96 'web_contents_delegate_android.gypi', | 97 'web_contents_delegate_android.gypi', |
97 'web_modal.gypi', | 98 'web_modal.gypi', |
98 'webui_generator.gypi', | 99 'webui_generator.gypi', |
99 ], | 100 ], |
100 }], | 101 }], |
101 ['OS == "ios"', { | 102 ['OS == "ios"', { |
102 'includes': [ | 103 'includes': [ |
103 'open_from_clipboard.gypi', | 104 'open_from_clipboard.gypi', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 'printing.gypi', | 147 'printing.gypi', |
147 ], | 148 ], |
148 }], | 149 }], |
149 ['enable_plugins==1', { | 150 ['enable_plugins==1', { |
150 'includes': [ | 151 'includes': [ |
151 'pdf.gypi', | 152 'pdf.gypi', |
152 ], | 153 ], |
153 }], | 154 }], |
154 ], | 155 ], |
155 } | 156 } |
OLD | NEW |