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

Unified Diff: adblockplus.gyp

Issue 5979045791531008: create utils project with shared files (Closed)
Patch Set: rename project name "utils"->"shared" Created July 16, 2014, 4:30 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockplus.gyp
===================================================================
--- a/adblockplus.gyp
+++ b/adblockplus.gyp
@@ -31,7 +31,7 @@
},
'targets': [{
- 'target_name': 'utils',
+ 'target_name': 'shared',
'type': 'static_library',
'sources': [
'src/shared/AutoHandle.cpp',
@@ -45,7 +45,7 @@
'target_name': 'AdblockPlusEngine',
'type': 'executable',
'dependencies': [
- 'utils',
+ 'shared',
'libadblockplus/libadblockplus.gyp:libadblockplus',
],
'sources': [
@@ -74,7 +74,7 @@
'target_name': 'AdblockPlus',
'type': 'shared_library',
'dependencies': [
- 'utils'
+ 'shared'
],
'sources': [
'src/plugin/AdblockPlusClient.cpp',
@@ -158,7 +158,7 @@
'target_name': 'tests',
'type': 'executable',
'dependencies': [
- 'utils',
+ 'shared',
'libadblockplus/third_party/googletest.gyp:googletest_main',
],
'sources': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld