| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ], | 48 ], |
| 49 'include_dirs': [ | 49 'include_dirs': [ |
| 50 '..', | 50 '..', |
| 51 ], | 51 ], |
| 52 }], | 52 }], |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 'targets': [ | 55 'targets': [ |
| 56 { | 56 { |
| 57 'target_name': 'ipc', | 57 'target_name': 'ipc', |
| 58 'type': '<(library)', | 58 'type': 'static_library', |
| 59 'variables': { | 59 'variables': { |
| 60 'ipc_target': 1, | 60 'ipc_target': 1, |
| 61 }, | 61 }, |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '../base/base.gyp:base', | 63 '../base/base.gyp:base', |
| 64 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 64 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 65 ], | 65 ], |
| 66 # TODO(gregoryd): direct_dependent_settings should be shared with the | 66 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 67 # 64-bit target, but it doesn't work due to a bug in gyp | 67 # 64-bit target, but it doesn't work due to a bug in gyp |
| 68 'direct_dependent_settings': { | 68 'direct_dependent_settings': { |
| 69 'include_dirs': [ | 69 'include_dirs': [ |
| 70 '..', | 70 '..', |
| 71 ], | 71 ], |
| 72 }, | 72 }, |
| 73 }, | 73 }, |
| 74 ], | 74 ], |
| 75 'conditions': [ | 75 'conditions': [ |
| 76 ['OS=="win"', { | 76 ['OS=="win"', { |
| 77 'targets': [ | 77 'targets': [ |
| 78 { | 78 { |
| 79 'target_name': 'ipc_win64', | 79 'target_name': 'ipc_win64', |
| 80 'type': '<(library)', | 80 'type': 'static_library', |
| 81 'variables': { | 81 'variables': { |
| 82 'ipc_target': 1, | 82 'ipc_target': 1, |
| 83 }, | 83 }, |
| 84 'dependencies': [ | 84 'dependencies': [ |
| 85 '../base/base.gyp:base_nacl_win64', | 85 '../base/base.gyp:base_nacl_win64', |
| 86 ], | 86 ], |
| 87 # TODO(gregoryd): direct_dependent_settings should be shared with the | 87 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 88 # 32-bit target, but it doesn't work due to a bug in gyp | 88 # 32-bit target, but it doesn't work due to a bug in gyp |
| 89 'direct_dependent_settings': { | 89 'direct_dependent_settings': { |
| 90 'include_dirs': [ | 90 'include_dirs': [ |
| 91 '..', | 91 '..', |
| 92 ], | 92 ], |
| 93 }, | 93 }, |
| 94 'configurations': { | 94 'configurations': { |
| 95 'Common_Base': { | 95 'Common_Base': { |
| 96 'msvs_target_platform': 'x64', | 96 'msvs_target_platform': 'x64', |
| 97 }, | 97 }, |
| 98 }, | 98 }, |
| 99 }, | 99 }, |
| 100 ], | 100 ], |
| 101 }], | 101 }], |
| 102 ], | 102 ], |
| 103 } | 103 } |
| 104 | 104 |
| 105 # Local Variables: | 105 # Local Variables: |
| 106 # tab-width:2 | 106 # tab-width:2 |
| 107 # indent-tabs-mode:nil | 107 # indent-tabs-mode:nil |
| 108 # End: | 108 # End: |
| 109 # vim: set expandtab tabstop=2 shiftwidth=2: | 109 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |