| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'includes': [ | 92 'includes': [ |
| 93 'pairing.gypi', | 93 'pairing.gypi', |
| 94 'timers.gypi', | 94 'timers.gypi', |
| 95 ], | 95 ], |
| 96 }], | 96 }], |
| 97 ['OS == "win" or OS == "mac"', { | 97 ['OS == "win" or OS == "mac"', { |
| 98 'includes': [ | 98 'includes': [ |
| 99 'wifi.gypi', | 99 'wifi.gypi', |
| 100 ], | 100 ], |
| 101 }], | 101 }], |
| 102 ['OS == "win"', { |
| 103 'includes': [ |
| 104 'browser_watcher.gypi', |
| 105 ], |
| 106 }], |
| 102 ['chromeos == 1 or use_ash == 1', { | 107 ['chromeos == 1 or use_ash == 1', { |
| 103 'includes': [ | 108 'includes': [ |
| 104 'session_manager.gypi', | 109 'session_manager.gypi', |
| 105 'user_manager.gypi', | 110 'user_manager.gypi', |
| 106 ], | 111 ], |
| 107 }], | 112 }], |
| 108 ['toolkit_views==1', { | 113 ['toolkit_views==1', { |
| 109 'includes': [ | 114 'includes': [ |
| 110 'constrained_window.gypi', | 115 'constrained_window.gypi', |
| 111 ], | 116 ], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 122 'invalidation.gypi', | 127 'invalidation.gypi', |
| 123 ], | 128 ], |
| 124 }], | 129 }], |
| 125 ['enable_plugins==1', { | 130 ['enable_plugins==1', { |
| 126 'includes': [ | 131 'includes': [ |
| 127 'pdf.gypi', | 132 'pdf.gypi', |
| 128 ], | 133 ], |
| 129 }], | 134 }], |
| 130 ], | 135 ], |
| 131 } | 136 } |
| OLD | NEW |