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

Side by Side Diff: components/crx_file.gypi

Issue 481433005: Extensions: Move id_util functions to crx_file component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update GN build 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'crx_file', 8 'target_name': 'crx_file',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 '../base/base.gyp:base', 11 '../base/base.gyp:base',
12 ], 12 ],
13 'include_dirs': [ 13 'include_dirs': [
14 '..', 14 '..',
15 ], 15 ],
16 'defines': [ 16 'defines': [
17 'CRX_FILE_IMPLEMENTATION', 17 'CRX_FILE_IMPLEMENTATION',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'crx_file/constants.h', 20 'crx_file/constants.h',
21 'crx_file/crx_file.cc', 21 'crx_file/crx_file.cc',
22 'crx_file/crx_file.h', 22 'crx_file/crx_file.h',
23 'crx_file/id_util.cc',
24 'crx_file/id_util.h',
23 ], 25 ],
24 }, 26 },
25 ], 27 ],
26 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698