Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: device/serial/serial.gyp

Issue 489153003: Split bundle generation steps so that API registration is generated in browser, not common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'serial_device_enumerator_win.h', 78 'serial_device_enumerator_win.h',
79 'serial_io_handler.cc', 79 'serial_io_handler.cc',
80 'serial_io_handler.h', 80 'serial_io_handler.h',
81 'serial_io_handler_posix.cc', 81 'serial_io_handler_posix.cc',
82 'serial_io_handler_posix.h', 82 'serial_io_handler_posix.h',
83 'serial_io_handler_win.cc', 83 'serial_io_handler_win.cc',
84 'serial_io_handler_win.h', 84 'serial_io_handler_win.h',
85 'serial_service_impl.cc', 85 'serial_service_impl.cc',
86 'serial_service_impl.h', 86 'serial_service_impl.h',
87 ], 87 ],
88 'hard_dependency': 1, # Generates included header files.
88 }, 89 },
89 { 90 {
90 # GN version: //device/serial:test_util 91 # GN version: //device/serial:test_util
91 'target_name': 'device_serial_test_util', 92 'target_name': 'device_serial_test_util',
92 'type': 'static_library', 93 'type': 'static_library',
93 'dependencies': [ 94 'dependencies': [
94 'device_serial', 95 'device_serial',
95 'device_serial_mojo', 96 'device_serial_mojo',
96 ], 97 ],
97 'sources': [ 98 'sources': [
98 'test_serial_io_handler.cc', 99 'test_serial_io_handler.cc',
99 'test_serial_io_handler.h', 100 'test_serial_io_handler.h',
100 ], 101 ],
101 }, 102 },
102 ], 103 ],
103 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698