| 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 'prefs/scoped_user_pref_update.h', | 369 'prefs/scoped_user_pref_update.h', |
| 370 'prefs/value_map_pref_store.cc', | 370 'prefs/value_map_pref_store.cc', |
| 371 'prefs/value_map_pref_store.h', | 371 'prefs/value_map_pref_store.h', |
| 372 'prefs/writeable_pref_store.h', | 372 'prefs/writeable_pref_store.h', |
| 373 ], | 373 ], |
| 374 'includes': [ | 374 'includes': [ |
| 375 '../build/android/increase_size_for_speed.gypi', | 375 '../build/android/increase_size_for_speed.gypi', |
| 376 ], | 376 ], |
| 377 }, | 377 }, |
| 378 { | 378 { |
| 379 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. | |
| 380 # GN: //base:protect_file_posix | |
| 381 'target_name': 'protect_file_posix', | |
| 382 'conditions': [ | |
| 383 ['os_posix == 1', { | |
| 384 'type': 'static_library', | |
| 385 'dependencies': [ | |
| 386 'base', | |
| 387 ], | |
| 388 'sources': [ | |
| 389 'files/protect_file_posix.cc', | |
| 390 ], | |
| 391 }, { | |
| 392 'type': 'none', | |
| 393 }], | |
| 394 ], | |
| 395 }, | |
| 396 { | |
| 397 'target_name': 'base_prefs_test_support', | 379 'target_name': 'base_prefs_test_support', |
| 398 'type': 'static_library', | 380 'type': 'static_library', |
| 399 'dependencies': [ | 381 'dependencies': [ |
| 400 'base', | 382 'base', |
| 401 'base_prefs', | 383 'base_prefs', |
| 402 '../testing/gmock.gyp:gmock', | 384 '../testing/gmock.gyp:gmock', |
| 403 ], | 385 ], |
| 404 'sources': [ | 386 'sources': [ |
| 405 'prefs/mock_pref_change_callback.cc', | 387 'prefs/mock_pref_change_callback.cc', |
| 406 'prefs/pref_store_observer_mock.cc', | 388 'prefs/pref_store_observer_mock.cc', |
| (...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1623 'dependencies': [ | 1605 'dependencies': [ |
| 1624 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1606 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 1625 ], | 1607 ], |
| 1626 }], | 1608 }], |
| 1627 ], | 1609 ], |
| 1628 }, | 1610 }, |
| 1629 ], | 1611 ], |
| 1630 }], | 1612 }], |
| 1631 ], | 1613 ], |
| 1632 } | 1614 } |
| OLD | NEW |