| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', | 347 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', |
| 348 'vi', 'zh-CN', 'zh-TW', | 348 'vi', 'zh-CN', 'zh-TW', |
| 349 ], | 349 ], |
| 350 | 350 |
| 351 'grit_defines': [], | 351 'grit_defines': [], |
| 352 | 352 |
| 353 # Use Harfbuzz-NG instead of Harfbuzz. | 353 # Use Harfbuzz-NG instead of Harfbuzz. |
| 354 # Under development: http://crbug.com/68551 | 354 # Under development: http://crbug.com/68551 |
| 355 'use_harfbuzz_ng%': 0, | 355 'use_harfbuzz_ng%': 0, |
| 356 | 356 |
| 357 # Point to ICU directory. |
| 358 'icu_src_dir': '../third_party/icu', |
| 359 |
| 357 'conditions': [ | 360 'conditions': [ |
| 358 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 361 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 359 # This will set gcc_version to XY if you are running gcc X.Y.*. | 362 # This will set gcc_version to XY if you are running gcc X.Y.*. |
| 360 # This is used to tweak build flags for gcc 4.4. | 363 # This is used to tweak build flags for gcc 4.4. |
| 361 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 364 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
| 362 # Figure out the python architecture to decide if we build pyauto. | 365 # Figure out the python architecture to decide if we build pyauto. |
| 363 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', | 366 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', |
| 364 'conditions': [ | 367 'conditions': [ |
| 365 ['branding=="Chrome"', { | 368 ['branding=="Chrome"', { |
| 366 'linux_breakpad%': 1, | 369 'linux_breakpad%': 1, |
| (...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1516 # and therefore SYMROOT, needs to be set at the project level. | 1519 # and therefore SYMROOT, needs to be set at the project level. |
| 1517 'SYMROOT': '<(DEPTH)/xcodebuild', | 1520 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1518 }, | 1521 }, |
| 1519 } | 1522 } |
| 1520 | 1523 |
| 1521 # Local Variables: | 1524 # Local Variables: |
| 1522 # tab-width:2 | 1525 # tab-width:2 |
| 1523 # indent-tabs-mode:nil | 1526 # indent-tabs-mode:nil |
| 1524 # End: | 1527 # End: |
| 1525 # vim: set expandtab tabstop=2 shiftwidth=2: | 1528 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |