Index: components/profile_service/profile_service.gyp |
diff --git a/components/filesystem/filesystem.gyp b/components/profile_service/profile_service.gyp |
similarity index 54% |
copy from components/filesystem/filesystem.gyp |
copy to components/profile_service/profile_service.gyp |
index 718830d02c7246329b82b0ff2d3d847a7c7dd819..75561bde5545429a2961a3d0a524d6bd516652ae 100644 |
--- a/components/filesystem/filesystem.gyp |
+++ b/components/profile_service/profile_service.gyp |
@@ -11,55 +11,54 @@ |
}, |
'targets': [ |
{ |
- # GN version: //components/filesystem:lib |
- 'target_name': 'filesystem_lib', |
+ # GN version: //components/profile_serivce:lib |
+ 'target_name': 'profile_service_lib', |
'type': 'static_library', |
'include_dirs': [ |
'../..', |
], |
'sources': [ |
- 'directory_impl.cc', |
- 'directory_impl.h', |
- 'file_impl.cc', |
- 'file_impl.h', |
- 'file_system_impl.cc', |
- 'file_system_impl.h', |
- 'lock_table.cc', |
- 'lock_table.h', |
- 'util.cc', |
- 'util.h', |
+ 'profile_app.cc', |
+ 'profile_app.h', |
+ 'profile_service_impl.cc', |
+ 'profile_service_impl.h', |
], |
'dependencies': [ |
- 'filesystem_bindings', |
+ 'profile_service_bindings', |
+ '../../base/base.gyp:base', |
+ '../../components/filesystem/filesystem.gyp:filesystem_lib', |
+ '../../components/leveldb/leveldb.gyp:leveldb_lib', |
'../../mojo/mojo_base.gyp:mojo_application_base', |
+ '../../mojo/mojo_base.gyp:tracing_service', |
'../../mojo/mojo_edk.gyp:mojo_system_impl', |
'../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
'../../mojo/mojo_platform_handle.gyp:platform_handle', |
'../../url/url.gyp:url_lib', |
], |
'export_dependent_settings': [ |
- 'filesystem_bindings', |
+ 'profile_service_bindings', |
], |
}, |
{ |
- # GN version: //components/filesystem/public/interfaces |
- 'target_name': 'filesystem_bindings', |
+ # GN version: //components/profile_service/public/interfaces |
+ 'target_name': 'profile_service_bindings', |
'type': 'static_library', |
'dependencies': [ |
- 'filesystem_bindings_mojom', |
+ 'profile_service_bindings_mojom', |
], |
}, |
{ |
- 'target_name': 'filesystem_bindings_mojom', |
+ 'target_name': 'profile_service_bindings_mojom', |
'type': 'none', |
'variables': { |
'mojom_files': [ |
- 'public/interfaces/directory.mojom', |
- 'public/interfaces/file.mojom', |
- 'public/interfaces/file_system.mojom', |
- 'public/interfaces/types.mojom', |
+ 'public/interfaces/profile.mojom', |
], |
}, |
+ 'dependencies': [ |
+ '../../components/filesystem/filesystem.gyp:filesystem_bindings_mojom', |
+ '../../components/leveldb/leveldb.gyp:leveldb_bindings_mojom', |
+ ], |
'includes': [ |
'../../mojo/mojom_bindings_generator_explicit.gypi', |
], |