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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 16 matching lines...) Expand all Loading... |
27 'type': 'static_library', | 27 'type': 'static_library', |
28 'conditions': [ | 28 'conditions': [ |
29 ['OS=="linux"', { | 29 ['OS=="linux"', { |
30 'dependencies': [ | 30 'dependencies': [ |
31 '../../build/linux/system.gyp:udev', | 31 '../../build/linux/system.gyp:udev', |
32 ], | 32 ], |
33 }], | 33 }], |
34 ], | 34 ], |
35 'dependencies': [ | 35 'dependencies': [ |
36 'device_serial_mojo', | 36 'device_serial_mojo', |
37 '../../mojo/mojo.gyp:mojo_cpp_bindings', | 37 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', |
38 '../../net/net.gyp:net', | 38 '../../net/net.gyp:net', |
39 ], | 39 ], |
40 'export_dependent_settings': [ | 40 'export_dependent_settings': [ |
41 'device_serial_mojo', | 41 'device_serial_mojo', |
42 '../../mojo/mojo.gyp:mojo_cpp_bindings', | 42 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', |
43 ], | 43 ], |
44 'sources': [ | 44 'sources': [ |
45 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.cc', | 45 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.cc', |
46 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.h', | 46 '<(SHARED_INTERMEDIATE_DIR)/device/serial/serial.mojom.h', |
47 'serial_connection.cc', | 47 'serial_connection.cc', |
48 'serial_connection.h', | 48 'serial_connection.h', |
49 'serial_connection_factory.cc', | 49 'serial_connection_factory.cc', |
50 'serial_connection_factory.h', | 50 'serial_connection_factory.h', |
51 'serial_device_enumerator.cc', | 51 'serial_device_enumerator.cc', |
52 'serial_device_enumerator.h', | 52 'serial_device_enumerator.h', |
(...skipping 21 matching lines...) Expand all Loading... |
74 'device_serial', | 74 'device_serial', |
75 'device_serial_mojo', | 75 'device_serial_mojo', |
76 ], | 76 ], |
77 'sources': [ | 77 'sources': [ |
78 'test_serial_io_handler.cc', | 78 'test_serial_io_handler.cc', |
79 'test_serial_io_handler.h', | 79 'test_serial_io_handler.h', |
80 ], | 80 ], |
81 }, | 81 }, |
82 ], | 82 ], |
83 } | 83 } |
OLD | NEW |