| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |