Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: base/base.gyp

Issue 981623002: move protect_file_posix to posix block (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: condition inside Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698