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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 'prefs/scoped_user_pref_update.h', | 370 'prefs/scoped_user_pref_update.h', |
371 'prefs/value_map_pref_store.cc', | 371 'prefs/value_map_pref_store.cc', |
372 'prefs/value_map_pref_store.h', | 372 'prefs/value_map_pref_store.h', |
373 'prefs/writeable_pref_store.h', | 373 'prefs/writeable_pref_store.h', |
374 ], | 374 ], |
375 'includes': [ | 375 'includes': [ |
376 '../build/android/increase_size_for_speed.gypi', | 376 '../build/android/increase_size_for_speed.gypi', |
377 ], | 377 ], |
378 }, | 378 }, |
379 { | 379 { |
| 380 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. |
| 381 # GN: //base:protect_file_posix |
| 382 'target_name': 'protect_file_posix', |
| 383 'type': 'static_library', |
| 384 'dependencies': [ |
| 385 'base', |
| 386 ], |
| 387 'sources': [ |
| 388 'files/protect_file_posix.cc', |
| 389 ], |
| 390 }, |
| 391 { |
380 'target_name': 'base_prefs_test_support', | 392 'target_name': 'base_prefs_test_support', |
381 'type': 'static_library', | 393 'type': 'static_library', |
382 'dependencies': [ | 394 'dependencies': [ |
383 'base', | 395 'base', |
384 'base_prefs', | 396 'base_prefs', |
385 '../testing/gmock.gyp:gmock', | 397 '../testing/gmock.gyp:gmock', |
386 ], | 398 ], |
387 'sources': [ | 399 'sources': [ |
388 'prefs/mock_pref_change_callback.cc', | 400 'prefs/mock_pref_change_callback.cc', |
389 'prefs/pref_store_observer_mock.cc', | 401 'prefs/pref_store_observer_mock.cc', |
(...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1539 'dependencies': [ | 1551 'dependencies': [ |
1540 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1552 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1541 ], | 1553 ], |
1542 }], | 1554 }], |
1543 ], | 1555 ], |
1544 }, | 1556 }, |
1545 ], | 1557 ], |
1546 }], | 1558 }], |
1547 ], | 1559 ], |
1548 } | 1560 } |
OLD | NEW |