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

Side by Side Diff: base/base.gyp

Issue 987943002: Fix SysStrings unit test failure on Chromecast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moving SYSTEM_NATIVE_UTF8 setup to base_unittest gyp target Created 5 years, 9 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/strings/sys_string_conversions_unittest.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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 ['OS == "android" and _toolset == "target"', { 836 ['OS == "android" and _toolset == "target"', {
837 'sources': [ 837 'sources': [
838 'memory/discardable_memory_ashmem_allocator_unittest.cc', 838 'memory/discardable_memory_ashmem_allocator_unittest.cc',
839 ], 839 ],
840 }], 840 }],
841 ['OS == "android"', { 841 ['OS == "android"', {
842 'sources/': [ 842 'sources/': [
843 ['include', '^debug/proc_maps_linux_unittest\\.cc$'], 843 ['include', '^debug/proc_maps_linux_unittest\\.cc$'],
844 ], 844 ],
845 }], 845 }],
846 # Enable more direct string conversions on platforms with native utf8
847 # strings
848 ['OS=="mac" or OS=="ios" or <(chromeos)==1 or <(chromecast)==1', {
849 'defines': ['SYSTEM_NATIVE_UTF8'],
850 }],
846 ], # target_conditions 851 ], # target_conditions
847 }, 852 },
848 { 853 {
849 'target_name': 'base_perftests', 854 'target_name': 'base_perftests',
850 'type': '<(gtest_target_type)', 855 'type': '<(gtest_target_type)',
851 'dependencies': [ 856 'dependencies': [
852 'base', 857 'base',
853 'test_support_base', 858 'test_support_base',
854 '../testing/gtest.gyp:gtest', 859 '../testing/gtest.gyp:gtest',
855 ], 860 ],
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
1599 'dependencies': [ 1604 'dependencies': [
1600 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1605 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1601 ], 1606 ],
1602 }], 1607 }],
1603 ], 1608 ],
1604 }, 1609 },
1605 ], 1610 ],
1606 }], 1611 }],
1607 ], 1612 ],
1608 } 1613 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/strings/sys_string_conversions_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698