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

Side by Side Diff: build/common.gypi

Issue 417473003: Add 'hi' locale for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | no next file » | 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after
1570 }], # os_posix==1 and OS!="mac" and OS!="ios" 1570 }], # os_posix==1 and OS!="mac" and OS!="ios"
1571 ['OS=="ios"', { 1571 ['OS=="ios"', {
1572 'disable_nacl%': 1, 1572 'disable_nacl%': 1,
1573 'enable_background%': 0, 1573 'enable_background%': 0,
1574 'icu_use_data_file_flag%': 1, 1574 'icu_use_data_file_flag%': 1,
1575 'enable_web_speech%': 0, 1575 'enable_web_speech%': 0,
1576 'use_system_libxml%': 1, 1576 'use_system_libxml%': 1,
1577 'use_system_sqlite%': 1, 1577 'use_system_sqlite%': 1,
1578 'locales==': [ 1578 'locales==': [
1579 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX', 1579 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1580 'fi', 'fr', 'he', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms', 'nb', 1580 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1581 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr', 'uk', 1581 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1582 'vi', 'zh-CN', 'zh-TW', 1582 'uk', 'vi', 'zh-CN', 'zh-TW',
1583 ], 1583 ],
1584 1584
1585 # The Mac SDK is set for iOS builds and passed through to Mac 1585 # The Mac SDK is set for iOS builds and passed through to Mac
1586 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be 1586 # sub-builds. This allows the Mac sub-build SDK in an iOS build to be
1587 # overridden from the command line the same way it is for a Mac build. 1587 # overridden from the command line the same way it is for a Mac build.
1588 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)', 1588 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)',
1589 1589
1590 # iOS SDK and deployment target support. The |ios_sdk| value is left 1590 # iOS SDK and deployment target support. The |ios_sdk| value is left
1591 # blank so that when it is set in the project files it will be the 1591 # blank so that when it is set in the project files it will be the
1592 # "current" iOS SDK. Forcing a specific SDK even if it is "current" 1592 # "current" iOS SDK. Forcing a specific SDK even if it is "current"
(...skipping 4029 matching lines...) Expand 10 before | Expand all | Expand 10 after
5622 # settings in target dicts. SYMROOT is a special case, because many other 5622 # settings in target dicts. SYMROOT is a special case, because many other
5623 # Xcode variables depend on it, including variables such as 5623 # Xcode variables depend on it, including variables such as
5624 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5624 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5625 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5625 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5626 # files to appear (when present) in the UI as actual files and not red 5626 # files to appear (when present) in the UI as actual files and not red
5627 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5627 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5628 # and therefore SYMROOT, needs to be set at the project level. 5628 # and therefore SYMROOT, needs to be set at the project level.
5629 'SYMROOT': '<(DEPTH)/xcodebuild', 5629 'SYMROOT': '<(DEPTH)/xcodebuild',
5630 }, 5630 },
5631 } 5631 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698