| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'ipc_target': 0, | 8 'ipc_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ['OS=="win"', { | 77 ['OS=="win"', { |
| 78 'targets': [ | 78 'targets': [ |
| 79 { | 79 { |
| 80 'target_name': 'ipc_win64', | 80 'target_name': 'ipc_win64', |
| 81 'type': 'static_library', | 81 'type': 'static_library', |
| 82 'variables': { | 82 'variables': { |
| 83 'ipc_target': 1, | 83 'ipc_target': 1, |
| 84 }, | 84 }, |
| 85 'dependencies': [ | 85 'dependencies': [ |
| 86 '../base/base.gyp:base_nacl_win64', | 86 '../base/base.gyp:base_nacl_win64', |
| 87 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | |
| 88 ], | 87 ], |
| 89 # TODO(gregoryd): direct_dependent_settings should be shared with the | 88 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 90 # 32-bit target, but it doesn't work due to a bug in gyp | 89 # 32-bit target, but it doesn't work due to a bug in gyp |
| 91 'direct_dependent_settings': { | 90 'direct_dependent_settings': { |
| 92 'include_dirs': [ | 91 'include_dirs': [ |
| 93 '..', | 92 '..', |
| 94 ], | 93 ], |
| 95 }, | 94 }, |
| 96 'configurations': { | 95 'configurations': { |
| 97 'Common_Base': { | 96 'Common_Base': { |
| 98 'msvs_target_platform': 'x64', | 97 'msvs_target_platform': 'x64', |
| 99 }, | 98 }, |
| 100 }, | 99 }, |
| 101 }, | 100 }, |
| 102 ], | 101 ], |
| 103 }], | 102 }], |
| 104 ], | 103 ], |
| 105 } | 104 } |
| OLD | NEW |