| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'common_constants_target': 0, | 8 'common_constants_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 { | 56 { |
| 57 'target_name': 'common_constants', | 57 'target_name': 'common_constants', |
| 58 'type': '<(library)', | 58 'type': '<(library)', |
| 59 'variables': { | 59 'variables': { |
| 60 'common_constants_target': 1, | 60 'common_constants_target': 1, |
| 61 }, | 61 }, |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '../base/base.gyp:base', | 63 '../base/base.gyp:base', |
| 64 ], | 64 ], |
| 65 'conditions': [ | 65 'conditions': [ |
| 66 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 66 ['toolkit_uses_gtk==1', { |
| 67 'dependencies': ['../build/linux/system.gyp:gtk'], | 67 'dependencies': ['../build/linux/system.gyp:gtk'], |
| 68 }], | 68 }], |
| 69 ], | 69 ], |
| 70 }, | 70 }, |
| 71 ], | 71 ], |
| 72 'conditions': [ | 72 'conditions': [ |
| 73 ['OS=="win"', { | 73 ['OS=="win"', { |
| 74 'targets': [ | 74 'targets': [ |
| 75 { | 75 { |
| 76 'target_name': 'common_constants_win64', | 76 'target_name': 'common_constants_win64', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 87 'configurations': { | 87 'configurations': { |
| 88 'Common_Base': { | 88 'Common_Base': { |
| 89 'msvs_target_platform': 'x64', | 89 'msvs_target_platform': 'x64', |
| 90 }, | 90 }, |
| 91 }, | 91 }, |
| 92 }, | 92 }, |
| 93 ], | 93 ], |
| 94 }], | 94 }], |
| 95 ], | 95 ], |
| 96 } | 96 } |
| OLD | NEW |