| 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 29 matching lines...) Expand all Loading... |
| 40 'startup_metric_utils.gypi', | 40 'startup_metric_utils.gypi', |
| 41 'translate.gypi', | 41 'translate.gypi', |
| 42 'url_matcher.gypi', | 42 'url_matcher.gypi', |
| 43 'user_prefs.gypi', | 43 'user_prefs.gypi', |
| 44 'variations.gypi', | 44 'variations.gypi', |
| 45 'webdata.gypi', | 45 'webdata.gypi', |
| 46 ], | 46 ], |
| 47 'conditions': [ | 47 'conditions': [ |
| 48 ['OS != "ios"', { | 48 ['OS != "ios"', { |
| 49 'includes': [ | 49 'includes': [ |
| 50 'cdm.gypi', |
| 50 'navigation_interception.gypi', | 51 'navigation_interception.gypi', |
| 51 'plugins.gypi', | 52 'plugins.gypi', |
| 52 'sessions.gypi', | 53 'sessions.gypi', |
| 53 'storage_monitor.gypi', | 54 'storage_monitor.gypi', |
| 54 'visitedlink.gypi', | 55 'visitedlink.gypi', |
| 55 'web_contents_delegate_android.gypi', | 56 'web_contents_delegate_android.gypi', |
| 56 'web_modal.gypi', | 57 'web_modal.gypi', |
| 57 ], | 58 ], |
| 58 }], | 59 }], |
| 59 ['OS == "win" or OS == "mac"', { | 60 ['OS == "win" or OS == "mac"', { |
| 60 'includes': [ | 61 'includes': [ |
| 61 'wifi.gypi', | 62 'wifi.gypi', |
| 62 ], | 63 ], |
| 63 }], | 64 }], |
| 64 ['OS != "ios" and OS != "android"', { | 65 ['OS != "ios" and OS != "android"', { |
| 65 'includes': [ | 66 'includes': [ |
| 66 'usb_service.gypi', | 67 'usb_service.gypi', |
| 67 ] | 68 ] |
| 68 }], | 69 }], |
| 69 ['android_webview_build == 0', { | 70 ['android_webview_build == 0', { |
| 70 # Android WebView fails to build if a dependency on sync.gyp:sync is | 71 # Android WebView fails to build if a dependency on sync.gyp:sync is |
| 71 # introduced. | 72 # introduced. |
| 72 'includes': [ | 73 'includes': [ |
| 73 'sync_driver.gypi', | 74 'sync_driver.gypi', |
| 74 ], | 75 ], |
| 75 }], | 76 }], |
| 76 ], | 77 ], |
| 77 } | 78 } |
| OLD | NEW |