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 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 ['branding=="Chrome"', { | 390 ['branding=="Chrome"', { |
391 'dependencies': [ | 391 'dependencies': [ |
392 'linux_installer_configs', | 392 'linux_installer_configs', |
393 ], | 393 ], |
394 }], | 394 }], |
395 ['selinux==0', { | 395 ['selinux==0', { |
396 'dependencies': [ | 396 'dependencies': [ |
397 '../sandbox/sandbox.gyp:sandbox', | 397 '../sandbox/sandbox.gyp:sandbox', |
398 ], | 398 ], |
399 }], | 399 }], |
400 ['linux_sandbox_path != ""', { | |
401 'defines': [ | |
402 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', | |
403 ], | |
404 }], | |
405 ], | 400 ], |
406 }], | 401 }], |
407 ['OS != "mac"', { | 402 ['OS != "mac"', { |
408 'conditions': [ | 403 'conditions': [ |
409 ['branding=="Chrome"', { | 404 ['branding=="Chrome"', { |
410 'product_name': 'chrome' | 405 'product_name': 'chrome' |
411 }, { # else: Branding!="Chrome" | 406 }, { # else: Branding!="Chrome" |
412 # TODO: change to: | 407 # TODO: change to: |
413 # 'product_name': 'chromium' | 408 # 'product_name': 'chromium' |
414 # whenever we convert the rest of the infrastructure | 409 # whenever we convert the rest of the infrastructure |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 'configurations': { | 509 'configurations': { |
515 'Common_Base': { | 510 'Common_Base': { |
516 'msvs_target_platform': 'x64', | 511 'msvs_target_platform': 'x64', |
517 }, | 512 }, |
518 }, | 513 }, |
519 }, | 514 }, |
520 ], | 515 ], |
521 }], | 516 }], |
522 ], | 517 ], |
523 } | 518 } |
OLD | NEW |