| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', | 365 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', |
| 366 'vi', 'zh-CN', 'zh-TW', | 366 'vi', 'zh-CN', 'zh-TW', |
| 367 ], | 367 ], |
| 368 | 368 |
| 369 'grit_defines': [], | 369 'grit_defines': [], |
| 370 | 370 |
| 371 # Use Harfbuzz-NG instead of Harfbuzz. | 371 # Use Harfbuzz-NG instead of Harfbuzz. |
| 372 # Under development: http://crbug.com/68551 | 372 # Under development: http://crbug.com/68551 |
| 373 'use_harfbuzz_ng%': 0, | 373 'use_harfbuzz_ng%': 0, |
| 374 | 374 |
| 375 # Point to ICU directory. |
| 376 'icu_src_dir': '../third_party/icu', |
| 377 |
| 375 'conditions': [ | 378 'conditions': [ |
| 376 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 379 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 377 # This will set gcc_version to XY if you are running gcc X.Y.*. | 380 # This will set gcc_version to XY if you are running gcc X.Y.*. |
| 378 # This is used to tweak build flags for gcc 4.4. | 381 # This is used to tweak build flags for gcc 4.4. |
| 379 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 382 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
| 380 # Figure out the python architecture to decide if we build pyauto. | 383 # Figure out the python architecture to decide if we build pyauto. |
| 381 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', | 384 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', |
| 382 'conditions': [ | 385 'conditions': [ |
| 383 ['branding=="Chrome"', { | 386 ['branding=="Chrome"', { |
| 384 'linux_breakpad%': 1, | 387 'linux_breakpad%': 1, |
| (...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 # and therefore SYMROOT, needs to be set at the project level. | 1575 # and therefore SYMROOT, needs to be set at the project level. |
| 1573 'SYMROOT': '<(DEPTH)/xcodebuild', | 1576 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1574 }, | 1577 }, |
| 1575 } | 1578 } |
| 1576 | 1579 |
| 1577 # Local Variables: | 1580 # Local Variables: |
| 1578 # tab-width:2 | 1581 # tab-width:2 |
| 1579 # indent-tabs-mode:nil | 1582 # indent-tabs-mode:nil |
| 1580 # End: | 1583 # End: |
| 1581 # vim: set expandtab tabstop=2 shiftwidth=2: | 1584 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |