Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
|
robertphillips
2013/07/12 14:01:40
2013?
djsollen
2013/07/12 14:43:27
Done.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
|
robertphillips
2013/07/12 14:01:40
# This file handles the removal of platform-specif
djsollen
2013/07/12 14:43:27
Done.
| |
| 6 'conditions': [ | |
| 7 [ 'OS != "android"', { | |
| 8 'sources/': [ | |
| 9 ['exclude', '_android\\.(cc|cpp)$'], | |
| 10 ], | |
| 11 }], | |
| 12 [ 'OS != "ios"', { | |
| 13 'sources/': [ | |
| 14 ['exclude', '_ios\\.(cc|cpp|mm?)$'], | |
| 15 ], | |
| 16 }], | |
| 17 [ 'OS != "mac"', { | |
| 18 'sources/': [ | |
| 19 ['exclude', '_mac\\.(cc|cpp|mm?)$'], | |
| 20 ], | |
| 21 }], | |
| 22 [ 'OS != "win"', { | |
| 23 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], | |
| 24 }], | |
| 25 [ 'use_glib == 0', { | |
| 26 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ], | |
| 27 }], | |
| 28 ], | |
| 29 | |
| 30 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], | |
| 31 } | |
| OLD | NEW |