OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 'prefs/writeable_pref_store.h', | 375 'prefs/writeable_pref_store.h', |
376 ], | 376 ], |
377 'includes': [ | 377 'includes': [ |
378 '../build/android/increase_size_for_speed.gypi', | 378 '../build/android/increase_size_for_speed.gypi', |
379 ], | 379 ], |
380 }, | 380 }, |
381 { | 381 { |
382 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. | 382 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. |
383 # GN: //base:protect_file_posix | 383 # GN: //base:protect_file_posix |
384 'target_name': 'protect_file_posix', | 384 'target_name': 'protect_file_posix', |
385 'type': 'static_library', | 385 'conditions': [ |
386 'dependencies': [ | 386 ['os_posix == 1', { |
387 'base', | 387 'type': 'static_library', |
388 ], | 388 'dependencies': [ |
389 'sources': [ | 389 'base', |
390 'files/protect_file_posix.cc', | 390 ], |
| 391 'sources': [ |
| 392 'files/protect_file_posix.cc', |
| 393 ], |
| 394 }, { |
| 395 'type': 'none', |
| 396 }], |
391 ], | 397 ], |
392 }, | 398 }, |
393 { | 399 { |
394 'target_name': 'base_prefs_test_support', | 400 'target_name': 'base_prefs_test_support', |
395 'type': 'static_library', | 401 'type': 'static_library', |
396 'dependencies': [ | 402 'dependencies': [ |
397 'base', | 403 'base', |
398 'base_prefs', | 404 'base_prefs', |
399 '../testing/gmock.gyp:gmock', | 405 '../testing/gmock.gyp:gmock', |
400 ], | 406 ], |
(...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1591 'dependencies': [ | 1597 'dependencies': [ |
1592 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1598 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1593 ], | 1599 ], |
1594 }], | 1600 }], |
1595 ], | 1601 ], |
1596 }, | 1602 }, |
1597 ], | 1603 ], |
1598 }], | 1604 }], |
1599 ], | 1605 ], |
1600 } | 1606 } |
OLD | NEW |