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

Side by Side Diff: base/base.gyp

Issue 1393233002: Mac Energy Test Harness/Framework Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Snapshot of scripts for http://crbug.com/391646 Created 5 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 | « no previous file | base/test/BUILD.gn » ('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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 }], 902 }],
903 ['OS == "android"', { 903 ['OS == "android"', {
904 'dependencies': [ 904 'dependencies': [
905 'base_unittests_jni_headers', 905 'base_unittests_jni_headers',
906 'base_java_unittest_support', 906 'base_java_unittest_support',
907 ], 907 ],
908 }], 908 }],
909 ['OS == "ios"', { 909 ['OS == "ios"', {
910 'toolsets': ['host', 'target'], 910 'toolsets': ['host', 'target'],
911 }], 911 }],
912 ['OS == "mac"', {
913 'xcode_settings': {
914 'OTHER_CFLAGS': [
915 '-F/Library/Frameworks'
916 ],
917 },
918 'link_settings': {
919 'libraries': [
920 '-framework IntelPowerGadget -F/Library/Frameworks',
921 ],
922 },
923 }],
912 ], 924 ],
913 'sources': [ 925 'sources': [
926 'test/energy_monitor_mac.cc',
927 'test/energy_monitor_mac.h',
914 'test/gtest_util.cc', 928 'test/gtest_util.cc',
915 'test/gtest_util.h', 929 'test/gtest_util.h',
916 'test/gtest_xml_unittest_result_printer.cc', 930 'test/gtest_xml_unittest_result_printer.cc',
917 'test/gtest_xml_unittest_result_printer.h', 931 'test/gtest_xml_unittest_result_printer.h',
918 'test/gtest_xml_util.cc', 932 'test/gtest_xml_util.cc',
919 'test/gtest_xml_util.h', 933 'test/gtest_xml_util.h',
920 'test/histogram_tester.cc', 934 'test/histogram_tester.cc',
921 'test/histogram_tester.h', 935 'test/histogram_tester.h',
922 'test/icu_test_util.cc', 936 'test/icu_test_util.cc',
923 'test/icu_test_util.h', 937 'test/icu_test_util.h',
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after
1677 '../build/isolate.gypi', 1691 '../build/isolate.gypi',
1678 ], 1692 ],
1679 'sources': [ 1693 'sources': [
1680 'base_unittests.isolate', 1694 'base_unittests.isolate',
1681 ], 1695 ],
1682 }, 1696 },
1683 ], 1697 ],
1684 }], 1698 }],
1685 ], 1699 ],
1686 } 1700 }
OLDNEW
« no previous file with comments | « no previous file | base/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698