OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/storage_monitor | 8 # GN version: //components/storage_monitor |
9 'target_name': 'storage_monitor', | 9 'target_name': 'storage_monitor', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
113 'storage_monitor/test_volume_mount_watcher_win.cc', | 113 'storage_monitor/test_volume_mount_watcher_win.cc', |
114 'storage_monitor/test_volume_mount_watcher_win.h', | 114 'storage_monitor/test_volume_mount_watcher_win.h', |
115 ], | 115 ], |
116 'conditions': [ | 116 'conditions': [ |
117 ['OS=="linux"', { | 117 ['OS=="linux"', { |
118 'dependencies': [ | 118 'dependencies': [ |
119 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol', | 119 '../device/media_transfer_protocol/media_transfer_protocol.gyp:devic e_media_transfer_protocol', |
120 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f ile_entry_proto', | 120 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f ile_entry_proto', |
121 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_s torage_info_proto', | 121 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_s torage_info_proto', |
122 ], | 122 ], |
123 }, 'OS=="win"', { | |
Lei Zhang
2015/10/07 16:28:09
Oh, does gyp support this new syntax now?
dcheng
2015/10/07 16:41:34
Huh, oops. Fixed (I'm surprised this gyped success
Lei Zhang
2015/10/07 20:33:11
It might actually be valid, but even if it is, it'
| |
124 'dependencies': [ | |
125 '../testing/gtest.gyp:gtest', | |
126 ], | |
123 }], | 127 }], |
124 ], | 128 ], |
125 }, | 129 }, |
126 ], | 130 ], |
127 } | 131 } |
OLD | NEW |