Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: common/common.gypi

Issue 6216090891845632: Issue #404 - Create common library shared between plugin/engine and installer (Closed)
Patch Set: final check after rebase Created May 19, 2015, 3:36 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « adblockplus.gyp ('k') | common/include/IeVersion.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # This file is part of Adblock Plus <https://adblockplus.org/>,
2 # Copyright (C) 2006-2015 Eyeo GmbH
3 #
4 # Adblock Plus is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation.
7 #
8 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
15
16 {
17 'targets': [
18 {
19 'target_name': 'common',
20 'type': 'static_library',
21 'include_dirs': [
22 'include',
23 ],
24 'sources': [
25 'include/Registry.h',
26 'src/Registry.cpp',
27 'include/IeVersion.h',
28 'src/IeVersion.cpp',
29 ],
30 'all_dependent_settings': {
31 'include_dirs': [
32 'include',
33 ],
34 },
35 },
36 {
37 'target_name': 'common_tests',
38 'type': 'executable',
39 'dependencies': [
40 'common',
41 'libadblockplus/third_party/googletest.gyp:googletest_main',
42 ],
43 'sources': [
44 'test/RegistryTest.cpp',
45 'test/IeVersionTest.cpp',
46 ],
47 'defines': ['WINVER=0x0501'],
48 'link_settings': {
49 'libraries': ['-ladvapi32', '-lshell32', '-lole32'],
50 },
51 'msvs_settings': {
52 'VCLinkerTool': {
53 'SubSystem': '1', # Console
54 'EntryPointSymbol': 'mainCRTStartup',
55 },
56 },
57 },
58 ]
59 }
OLDNEW
« no previous file with comments | « adblockplus.gyp ('k') | common/include/IeVersion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld