| 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', |
| 87 ], | 88 ], |
| 88 # TODO(gregoryd): direct_dependent_settings should be shared with the | 89 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 89 # 32-bit target, but it doesn't work due to a bug in gyp | 90 # 32-bit target, but it doesn't work due to a bug in gyp |
| 90 'direct_dependent_settings': { | 91 'direct_dependent_settings': { |
| 91 'include_dirs': [ | 92 'include_dirs': [ |
| 92 '..', | 93 '..', |
| 93 ], | 94 ], |
| 94 }, | 95 }, |
| 95 'configurations': { | 96 'configurations': { |
| 96 'Common_Base': { | 97 'Common_Base': { |
| 97 'msvs_target_platform': 'x64', | 98 'msvs_target_platform': 'x64', |
| 98 }, | 99 }, |
| 99 }, | 100 }, |
| 100 }, | 101 }, |
| 101 ], | 102 ], |
| 102 }], | 103 }], |
| 103 ], | 104 ], |
| 104 } | 105 } |
| 105 | 106 |
| 106 # Local Variables: | 107 # Local Variables: |
| 107 # tab-width:2 | 108 # tab-width:2 |
| 108 # indent-tabs-mode:nil | 109 # indent-tabs-mode:nil |
| 109 # End: | 110 # End: |
| 110 # vim: set expandtab tabstop=2 shiftwidth=2: | 111 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |