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

Side by Side Diff: base/base.gyp

Issue 10690161: Make it possible to run gtests on iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@presubmit_change
Patch Set: Code review feedback addressed. Created 8 years, 5 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 | base/test/main_hook.h » ('j') | base/test/main_hook.h » ('J')
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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 ], 679 ],
680 }], 680 }],
681 ['os_bsd==1', { 681 ['os_bsd==1', {
682 'sources!': [ 682 'sources!': [
683 'test/test_file_util_linux.cc', 683 'test/test_file_util_linux.cc',
684 ], 684 ],
685 }], 685 }],
686 ], 686 ],
687 'sources': [ 687 'sources': [
688 'perftimer.cc', 688 'perftimer.cc',
689 'test/main_hook.cc',
690 'test/main_hook.h',
691 'test/main_hook_ios.mm',
689 'test/mock_chrome_application_mac.h', 692 'test/mock_chrome_application_mac.h',
690 'test/mock_chrome_application_mac.mm', 693 'test/mock_chrome_application_mac.mm',
691 'test/mock_devices_changed_observer.cc', 694 'test/mock_devices_changed_observer.cc',
692 'test/mock_devices_changed_observer.h', 695 'test/mock_devices_changed_observer.h',
693 'test/mock_time_provider.cc', 696 'test/mock_time_provider.cc',
694 'test/mock_time_provider.h', 697 'test/mock_time_provider.h',
695 'test/multiprocess_test.cc', 698 'test/multiprocess_test.cc',
696 'test/multiprocess_test.h', 699 'test/multiprocess_test.h',
697 'test/multiprocess_test_android.cc', 700 'test/multiprocess_test_android.cc',
698 'test/perf_test_suite.cc', 701 'test/perf_test_suite.cc',
699 'test/perf_test_suite.h', 702 'test/perf_test_suite.h',
700 'test/scoped_locale.cc', 703 'test/scoped_locale.cc',
701 'test/scoped_locale.h', 704 'test/scoped_locale.h',
702 'test/sequenced_task_runner_test_template.cc', 705 'test/sequenced_task_runner_test_template.cc',
703 'test/sequenced_task_runner_test_template.h', 706 'test/sequenced_task_runner_test_template.h',
704 'test/task_runner_test_template.cc', 707 'test/task_runner_test_template.cc',
705 'test/task_runner_test_template.h', 708 'test/task_runner_test_template.h',
706 'test/test_file_util.h', 709 'test/test_file_util.h',
707 'test/test_file_util_linux.cc', 710 'test/test_file_util_linux.cc',
708 'test/test_file_util_mac.cc', 711 'test/test_file_util_mac.cc',
709 'test/test_file_util_posix.cc', 712 'test/test_file_util_posix.cc',
710 'test/test_file_util_win.cc', 713 'test/test_file_util_win.cc',
714 'test/test_listener_ios.h',
715 'test/test_listener_ios.mm',
711 'test/test_reg_util_win.cc', 716 'test/test_reg_util_win.cc',
712 'test/test_reg_util_win.h', 717 'test/test_reg_util_win.h',
713 'test/test_suite.cc', 718 'test/test_suite.cc',
714 'test/test_suite.h', 719 'test/test_suite.h',
715 'test/test_support_android.cc', 720 'test/test_support_android.cc',
716 'test/test_support_android.h', 721 'test/test_support_android.h',
717 'test/test_switches.cc', 722 'test/test_switches.cc',
718 'test/test_switches.h', 723 'test/test_switches.h',
719 'test/test_timeouts.cc', 724 'test/test_timeouts.cc',
720 'test/test_timeouts.h', 725 'test/test_timeouts.h',
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 'test_suite_name': 'base_unittests', 1055 'test_suite_name': 'base_unittests',
1051 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit tests<(SHARED_LIB_SUFFIX)', 1056 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit tests<(SHARED_LIB_SUFFIX)',
1052 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], 1057 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',],
1053 }, 1058 },
1054 'includes': [ '../build/apk_test.gypi' ], 1059 'includes': [ '../build/apk_test.gypi' ],
1055 }, 1060 },
1056 ], 1061 ],
1057 }], 1062 }],
1058 ], 1063 ],
1059 } 1064 }
OLDNEW
« no previous file with comments | « no previous file | base/test/main_hook.h » ('j') | base/test/main_hook.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698