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

Side by Side Diff: base/base.gyp

Issue 1064793002: Fix OutOfMemoryDeathTest.ViaSharedLibraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed CL to avoid target enumeration on unsupported OS Created 5 years, 8 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 | « base/BUILD.gn ('k') | base/base_unittests.isolate » ('j') | 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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 }, { # use_glib == 0 751 }, { # use_glib == 0
752 'sources!': [ 752 'sources!': [
753 'message_loop/message_pump_glib_unittest.cc', 753 'message_loop/message_pump_glib_unittest.cc',
754 ] 754 ]
755 }], 755 }],
756 ['use_ozone == 1', { 756 ['use_ozone == 1', {
757 'sources!': [ 757 'sources!': [
758 'message_loop/message_pump_glib_unittest.cc', 758 'message_loop/message_pump_glib_unittest.cc',
759 ] 759 ]
760 }], 760 }],
761 ['OS == "linux" and use_allocator!="none"', { 761 ['OS == "linux"', {
762 'dependencies': [ 762 'dependencies': [
763 'allocator/allocator.gyp:allocator', 763 'malloc_wrapper',
764 ], 764 ],
765 }, 765 'conditions': [
766 ['use_allocator!="none"', {
767 'dependencies': [
768 'allocator/allocator.gyp:allocator',
769 ],
770 }],
771 ]},
766 ], 772 ],
767 ['OS == "win"', { 773 ['OS == "win"', {
768 'sources!': [ 774 'sources!': [
769 'file_descriptor_shuffle_unittest.cc', 775 'file_descriptor_shuffle_unittest.cc',
770 'files/dir_reader_posix_unittest.cc', 776 'files/dir_reader_posix_unittest.cc',
771 'message_loop/message_pump_libevent_unittest.cc', 777 'message_loop/message_pump_libevent_unittest.cc',
772 'threading/worker_pool_posix_unittest.cc', 778 'threading/worker_pool_posix_unittest.cc',
773 ], 779 ],
774 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 780 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
775 'msvs_disabled_warnings': [ 781 'msvs_disabled_warnings': [
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1320 'third_party/xdg_mime/xdgmimemagic.h', 1326 'third_party/xdg_mime/xdgmimemagic.h',
1321 'third_party/xdg_mime/xdgmimeparent.c', 1327 'third_party/xdg_mime/xdgmimeparent.c',
1322 'third_party/xdg_mime/xdgmimeparent.h', 1328 'third_party/xdg_mime/xdgmimeparent.h',
1323 ], 1329 ],
1324 'includes': [ 1330 'includes': [
1325 '../build/android/increase_size_for_speed.gypi', 1331 '../build/android/increase_size_for_speed.gypi',
1326 ], 1332 ],
1327 }, 1333 },
1328 ], 1334 ],
1329 }], 1335 }],
1336 ['OS == "linux"', {
1337 'targets': [
1338 {
1339 'target_name': 'malloc_wrapper',
1340 'type': 'shared_library',
1341 'dependencies': [
1342 'base',
1343 ],
1344 'sources': [
1345 'test/malloc_wrapper.cc',
1346 ],
1347 }
1348 ],
1349 }],
1330 ['OS == "android"', { 1350 ['OS == "android"', {
1331 'targets': [ 1351 'targets': [
1332 { 1352 {
1333 # GN: //base:base_jni_headers 1353 # GN: //base:base_jni_headers
1334 'target_name': 'base_jni_headers', 1354 'target_name': 'base_jni_headers',
1335 'type': 'none', 1355 'type': 'none',
1336 'sources': [ 1356 'sources': [
1337 'android/java/src/org/chromium/base/ApplicationStatus.java', 1357 'android/java/src/org/chromium/base/ApplicationStatus.java',
1338 'android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java ', 1358 'android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java ',
1339 'android/java/src/org/chromium/base/BuildInfo.java', 1359 'android/java/src/org/chromium/base/BuildInfo.java',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1580 'dependencies': [ 1600 'dependencies': [
1581 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1601 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1582 ], 1602 ],
1583 }], 1603 }],
1584 ], 1604 ],
1585 }, 1605 },
1586 ], 1606 ],
1587 }], 1607 }],
1588 ], 1608 ],
1589 } 1609 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/base_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698