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

Side by Side Diff: base/base.gyp

Issue 651253002: Enforce handle ownership in base::Process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add empty line Created 6 years, 2 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/process/kill_posix.cc » ('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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 'prefs/pref_notifier_impl_unittest.cc', 557 'prefs/pref_notifier_impl_unittest.cc',
558 'prefs/pref_service_unittest.cc', 558 'prefs/pref_service_unittest.cc',
559 'prefs/pref_value_map_unittest.cc', 559 'prefs/pref_value_map_unittest.cc',
560 'prefs/pref_value_store_unittest.cc', 560 'prefs/pref_value_store_unittest.cc',
561 'prefs/scoped_user_pref_update_unittest.cc', 561 'prefs/scoped_user_pref_update_unittest.cc',
562 'process/memory_unittest.cc', 562 'process/memory_unittest.cc',
563 'process/memory_unittest_mac.h', 563 'process/memory_unittest_mac.h',
564 'process/memory_unittest_mac.mm', 564 'process/memory_unittest_mac.mm',
565 'process/process_metrics_unittest.cc', 565 'process/process_metrics_unittest.cc',
566 'process/process_metrics_unittest_ios.cc', 566 'process/process_metrics_unittest_ios.cc',
567 'process/process_unittest.cc',
567 'process/process_util_unittest.cc', 568 'process/process_util_unittest.cc',
568 'profiler/tracked_time_unittest.cc', 569 'profiler/tracked_time_unittest.cc',
569 'rand_util_unittest.cc', 570 'rand_util_unittest.cc',
570 'numerics/safe_numerics_unittest.cc', 571 'numerics/safe_numerics_unittest.cc',
571 'scoped_clear_errno_unittest.cc', 572 'scoped_clear_errno_unittest.cc',
572 'scoped_generic_unittest.cc', 573 'scoped_generic_unittest.cc',
573 'scoped_native_library_unittest.cc', 574 'scoped_native_library_unittest.cc',
574 'security_unittest.cc', 575 'security_unittest.cc',
575 'sequence_checker_unittest.cc', 576 'sequence_checker_unittest.cc',
576 'sha1_unittest.cc', 577 'sha1_unittest.cc',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 ['OS == "android"', { 677 ['OS == "android"', {
677 'dependencies': [ 678 'dependencies': [
678 'android/jni_generator/jni_generator.gyp:jni_generator_tests', 679 'android/jni_generator/jni_generator.gyp:jni_generator_tests',
679 '../testing/android/native_test.gyp:native_test_native_code', 680 '../testing/android/native_test.gyp:native_test_native_code',
680 ], 681 ],
681 }], 682 }],
682 ['OS == "ios" and _toolset != "host"', { 683 ['OS == "ios" and _toolset != "host"', {
683 'sources/': [ 684 'sources/': [
684 # Only test the iOS-meaningful portion of process_utils. 685 # Only test the iOS-meaningful portion of process_utils.
685 ['exclude', '^process/memory_unittest'], 686 ['exclude', '^process/memory_unittest'],
687 ['exclude', '^process/process_unittest\\.cc$'],
686 ['exclude', '^process/process_util_unittest\\.cc$'], 688 ['exclude', '^process/process_util_unittest\\.cc$'],
687 ['include', '^process/process_util_unittest_ios\\.cc$'], 689 ['include', '^process/process_util_unittest_ios\\.cc$'],
688 # Requires spawning processes. 690 # Requires spawning processes.
689 ['exclude', '^metrics/stats_table_unittest\\.cc$'], 691 ['exclude', '^metrics/stats_table_unittest\\.cc$'],
690 # iOS does not use message_pump_libevent. 692 # iOS does not use message_pump_libevent.
691 ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'], 693 ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
692 ], 694 ],
693 'actions': [ 695 'actions': [
694 { 696 {
695 'action_name': 'copy_test_data', 697 'action_name': 'copy_test_data',
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
1490 'dependencies': [ 1492 'dependencies': [
1491 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1493 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1492 ], 1494 ],
1493 }], 1495 }],
1494 ], 1496 ],
1495 }, 1497 },
1496 ], 1498 ],
1497 }], 1499 }],
1498 ], 1500 ],
1499 } 1501 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/process/kill_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698