| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ], | 48 ], |
| 49 'process_outputs_as_sources': 1, | 49 'process_outputs_as_sources': 1, |
| 50 }, | 50 }, |
| 51 ], | 51 ], |
| 52 }], | 52 }], |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 'targets': [ | 55 'targets': [ |
| 56 { | 56 { |
| 57 'target_name': 'common_constants', | 57 'target_name': 'common_constants', |
| 58 'type': '<(library)', | 58 'type': 'static_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 ['toolkit_uses_gtk == 1', { | 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', |
| 77 'type': '<(library)', | 77 'type': 'static_library', |
| 78 'variables': { | 78 'variables': { |
| 79 'common_constants_target': 1, | 79 'common_constants_target': 1, |
| 80 }, | 80 }, |
| 81 'dependencies': [ | 81 'dependencies': [ |
| 82 '../base/base.gyp:base_nacl_win64', | 82 '../base/base.gyp:base_nacl_win64', |
| 83 ], | 83 ], |
| 84 'defines': [ | 84 'defines': [ |
| 85 '<@(nacl_win64_defines)', | 85 '<@(nacl_win64_defines)', |
| 86 ], | 86 ], |
| 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 |