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

Side by Side Diff: Source/platform/blink_platform.gyp

Issue 26113002: Move core/platform/text/Locale* to platform/text (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/platform/Task.h ('k') | Source/platform/blink_platform.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'sources': [ 76 'sources': [
77 '<@(platform_files)', 77 '<@(platform_files)',
78 ], 78 ],
79 'conditions': [ 79 'conditions': [
80 ['OS=="mac"', { 80 ['OS=="mac"', {
81 'link_settings': { 81 'link_settings': {
82 'libraries': [ 82 'libraries': [
83 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', 83 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
84 ] 84 ]
85 }, 85 },
86 'sources/': [
87 # We use LocaleMac.mm instead of LocaleICU.cpp
88 ['exclude', 'LocaleICU\\.(cpp|h)$'],
89 ],
90 }, { # OS!="mac"
91 'sources/': [
92 ['exclude', 'Mac\\.mm$'],
93 ],
86 }], 94 }],
87 ['OS=="win"', { 95 ['OS=="win"', {
88 'sources/': [ 96 'sources/': [
89 ['exclude', 'Posix\\.cpp$'], 97 ['exclude', 'Posix\\.cpp$'],
98 # We use LocaleWin.cpp instead of LocaleICU.cpp
99 ['exclude', 'LocaleICU\\.(cpp|h)$'],
90 ], 100 ],
91 }, { # OS!="win" 101 }, { # OS!="win"
92 'sources/': [ 102 'sources/': [
93 ['exclude', 'Win\\.cpp$'], 103 ['exclude', 'Win\\.cpp$'],
94 ], 104 ],
95 }], 105 }],
96 ], 106 ],
97 }], 107 }],
98 } 108 }
OLDNEW
« no previous file with comments | « Source/platform/Task.h ('k') | Source/platform/blink_platform.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698