| 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': { | 9 'variables': { |
| 10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 },{ | 385 },{ |
| 386 'msvs_large_module_debug_link_mode%': '2', # Yes | 386 'msvs_large_module_debug_link_mode%': '2', # Yes |
| 387 }], | 387 }], |
| 388 ], | 388 ], |
| 389 'nacl_win64_defines': [ | 389 'nacl_win64_defines': [ |
| 390 # This flag is used to minimize dependencies when building | 390 # This flag is used to minimize dependencies when building |
| 391 # Native Client loader for 64-bit Windows. | 391 # Native Client loader for 64-bit Windows. |
| 392 'NACL_WIN64', | 392 'NACL_WIN64', |
| 393 ], | 393 ], |
| 394 }], | 394 }], |
| 395 ['OS=="mac" or (OS=="linux" and chromeos==0 and target_arch!="arm")', { | 395 ['OS=="linux" and chromeos==0 and target_arch!="arm"', { |
| 396 'use_cups%': 1, | 396 'use_cups%': 1, |
| 397 }, { | 397 }, { |
| 398 'use_cups%': 0, | 398 'use_cups%': 0, |
| 399 }], | 399 }], |
| 400 ], | 400 ], |
| 401 | 401 |
| 402 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' | 402 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' |
| 403 # so Cocoa is happy (http://crbug.com/20441). | 403 # so Cocoa is happy (http://crbug.com/20441). |
| 404 'locales': [ | 404 'locales': [ |
| 405 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | 405 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', |
| (...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1516 # and therefore SYMROOT, needs to be set at the project level. | 1516 # and therefore SYMROOT, needs to be set at the project level. |
| 1517 'SYMROOT': '<(DEPTH)/xcodebuild', | 1517 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1518 }, | 1518 }, |
| 1519 } | 1519 } |
| 1520 | 1520 |
| 1521 # Local Variables: | 1521 # Local Variables: |
| 1522 # tab-width:2 | 1522 # tab-width:2 |
| 1523 # indent-tabs-mode:nil | 1523 # indent-tabs-mode:nil |
| 1524 # End: | 1524 # End: |
| 1525 # vim: set expandtab tabstop=2 shiftwidth=2: | 1525 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |