OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 }], | 364 }], |
365 ['chromeos==1', { | 365 ['chromeos==1', { |
366 'sources': [ | 366 'sources': [ |
367 'policy/core/common/proxy_policy_provider_unittest.cc', | 367 'policy/core/common/proxy_policy_provider_unittest.cc', |
368 ], | 368 ], |
369 'sources!': [ | 369 'sources!': [ |
370 'policy/core/common/cloud/user_cloud_policy_manager_unittest
.cc', | 370 'policy/core/common/cloud/user_cloud_policy_manager_unittest
.cc', |
371 'policy/core/common/cloud/user_cloud_policy_store_unittest.c
c', | 371 'policy/core/common/cloud/user_cloud_policy_store_unittest.c
c', |
372 ], | 372 ], |
373 }], | 373 }], |
| 374 ['OS=="ios" or OS=="mac"', { |
| 375 'sources': [ |
| 376 'policy/core/common/mac_util_unittest.cc', |
| 377 ], |
| 378 }], |
374 ], | 379 ], |
375 }], | 380 }], |
376 ], | 381 ], |
377 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 382 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
378 'msvs_disabled_warnings': [4267, ], | 383 'msvs_disabled_warnings': [4267, ], |
379 }, | 384 }, |
380 ], | 385 ], |
381 }], | 386 }], |
382 ['OS != "ios" and android_webview_build == 0', { | 387 ['OS != "ios" and android_webview_build == 0', { |
383 'targets': [ | 388 'targets': [ |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 'dependencies': [ | 496 'dependencies': [ |
492 '../base/allocator/allocator.gyp:allocator', | 497 '../base/allocator/allocator.gyp:allocator', |
493 ], | 498 ], |
494 }], | 499 }], |
495 ], | 500 ], |
496 }, | 501 }, |
497 ], | 502 ], |
498 }], | 503 }], |
499 ], | 504 ], |
500 } | 505 } |
OLD | NEW |