| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 'includes': [ | 70 'includes': [ |
| 71 'feedback.gypi', | 71 'feedback.gypi', |
| 72 ] | 72 ] |
| 73 }], | 73 }], |
| 74 ['OS != "ios" and OS != "android"', { | 74 ['OS != "ios" and OS != "android"', { |
| 75 'includes': [ | 75 'includes': [ |
| 76 'storage_monitor.gypi', | 76 'storage_monitor.gypi', |
| 77 'usb_service.gypi', | 77 'usb_service.gypi', |
| 78 ] | 78 ] |
| 79 }], | 79 }], |
| 80 ['chromeos == 1', { |
| 81 'includes': [ |
| 82 'pairing.gypi', |
| 83 ], |
| 84 }], |
| 80 ['OS == "win" or OS == "mac"', { | 85 ['OS == "win" or OS == "mac"', { |
| 81 'includes': [ | 86 'includes': [ |
| 82 'wifi.gypi', | 87 'wifi.gypi', |
| 83 ], | 88 ], |
| 84 }], | 89 }], |
| 85 ['use_ash==1', { | 90 ['use_ash==1', { |
| 86 'includes': [ | 91 'includes': [ |
| 87 'session_manager.gypi', | 92 'session_manager.gypi', |
| 88 'user_manager.gypi', | 93 'user_manager.gypi', |
| 89 ], | 94 ], |
| 90 }], | 95 }], |
| 91 ['android_webview_build == 0', { | 96 ['android_webview_build == 0', { |
| 92 # Android WebView fails to build if a dependency on these targets is | 97 # Android WebView fails to build if a dependency on these targets is |
| 93 # introduced. | 98 # introduced. |
| 94 'includes': [ | 99 'includes': [ |
| 95 'gcm_driver.gypi', | 100 'gcm_driver.gypi', |
| 96 'search_engines.gypi', | 101 'search_engines.gypi', |
| 97 'sync_driver.gypi', | 102 'sync_driver.gypi', |
| 98 'invalidation.gypi', | 103 'invalidation.gypi', |
| 99 ], | 104 ], |
| 100 }], | 105 }], |
| 101 ], | 106 ], |
| 102 } | 107 } |
| OLD | NEW |