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

Unified Diff: src/trusted/generic_container/generic_container.gyp

Issue 10905317: Generic containers moved into a separate module (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebased with master. Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/generic_container/container_list.c ('k') | src/trusted/service_runtime/build.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/generic_container/generic_container.gyp
diff --git a/src/trusted/interval_multiset/interval_multiset.gyp b/src/trusted/generic_container/generic_container.gyp
similarity index 66%
copy from src/trusted/interval_multiset/interval_multiset.gyp
copy to src/trusted/generic_container/generic_container.gyp
index 1488b0fb5e4724596d4e196debcf63f1a3cab319..1a08a6524d64c545102f6bae21b9a01f4639b40a 100644
--- a/src/trusted/interval_multiset/interval_multiset.gyp
+++ b/src/trusted/generic_container/generic_container.gyp
@@ -13,15 +13,13 @@
'target_base': 'none',
},
'target_conditions': [
- ['target_base=="nacl_interval"', {
+ ['target_base=="generic_container"', {
'sources': [
- 'nacl_interval_multiset_delete.c',
- 'nacl_interval_multiset_factory.c',
- 'nacl_interval_multiset.h',
- 'nacl_interval_list.c',
- 'nacl_interval_list.h',
- 'nacl_interval_range_tree.c',
- 'nacl_interval_range_tree.h',
+ 'container.h',
+ 'container_list.c',
+ 'container_list.h',
+ 'container_hash_table.c',
+ 'container_hash_table.h',
],
},
]],
@@ -30,10 +28,10 @@
['OS=="win"', {
'targets': [
{
- 'target_name': 'nacl_interval64',
+ 'target_name': 'generic_container64',
'type': 'static_library',
'variables': {
- 'target_base': 'nacl_interval',
+ 'target_base': 'generic_container',
'win_target': 'x64',
},
'dependencies': [
@@ -45,10 +43,10 @@
],
'targets': [
{
- 'target_name': 'nacl_interval',
+ 'target_name': 'generic_container',
'type': 'static_library',
'variables': {
- 'target_base': 'nacl_interval',
+ 'target_base': 'generic_container',
},
'dependencies': [
'<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
« no previous file with comments | « src/trusted/generic_container/container_list.c ('k') | src/trusted/service_runtime/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698