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

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

Issue 343233002: Make chrome/common compile in GN (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 {
11 # GN version: //device/serial
11 'target_name': 'device_serial', 12 'target_name': 'device_serial',
12 'type': 'static_library', 13 'type': 'static_library',
13 'include_dirs': [ 14 'include_dirs': [
14 '../..', 15 '../..',
15 ], 16 ],
16 'conditions': [ 17 'conditions': [
17 ['OS=="linux"', { 18 ['OS=="linux"', {
18 'dependencies': [ 19 'dependencies': [
19 '../../build/linux/system.gyp:udev', 20 '../../build/linux/system.gyp:udev',
20 ], 21 ],
(...skipping 12 matching lines...) Expand all
33 'serial_device_enumerator_linux.cc', 34 'serial_device_enumerator_linux.cc',
34 'serial_device_enumerator_linux.h', 35 'serial_device_enumerator_linux.h',
35 'serial_device_enumerator_mac.cc', 36 'serial_device_enumerator_mac.cc',
36 'serial_device_enumerator_mac.h', 37 'serial_device_enumerator_mac.h',
37 'serial_device_enumerator_win.cc', 38 'serial_device_enumerator_win.cc',
38 'serial_device_enumerator_win.h', 39 'serial_device_enumerator_win.h',
39 ], 40 ],
40 }, 41 },
41 ], 42 ],
42 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698