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

Side by Side Diff: components/filesystem/filesystem.gyp

Issue 1737933002: mojo leveldb: Get profile and leveldb connected to DOMStorageContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp-ify all the tracing stuff. Created 4 years, 9 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
11 }, 11 },
12 'targets': [ 12 'targets': [
13 { 13 {
14 # GN version: //components/filesystem:lib 14 # GN version: //components/filesystem:lib
15 'target_name': 'filesystem_lib', 15 'target_name': 'filesystem_lib',
16 'type': 'static_library', 16 'type': 'static_library',
17 'include_dirs': [ 17 'include_dirs': [
18 '../..', 18 '../..',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 'directory_impl.cc', 21 'directory_impl.cc',
22 'directory_impl.h', 22 'directory_impl.h',
23 'file_impl.cc', 23 'file_impl.cc',
24 'file_impl.h', 24 'file_impl.h',
25 'file_system_app.cc',
26 'file_system_app.h',
25 'file_system_impl.cc', 27 'file_system_impl.cc',
26 'file_system_impl.h', 28 'file_system_impl.h',
27 'lock_table.cc', 29 'lock_table.cc',
28 'lock_table.h', 30 'lock_table.h',
29 'util.cc', 31 'util.cc',
30 'util.h', 32 'util.h',
31 ], 33 ],
32 'dependencies': [ 34 'dependencies': [
33 'filesystem_bindings', 35 'filesystem_bindings',
34 '../../mojo/mojo_base.gyp:mojo_application_base', 36 '../../mojo/mojo_base.gyp:mojo_application_base',
35 '../../mojo/mojo_edk.gyp:mojo_system_impl', 37 '../../mojo/mojo_edk.gyp:mojo_system_impl',
36 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', 38 '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
37 '../../mojo/mojo_platform_handle.gyp:platform_handle', 39 '../../mojo/mojo_platform_handle.gyp:platform_handle',
40 '../../mojo/mojo_services.gyp:tracing_service',
38 '../../url/url.gyp:url_lib', 41 '../../url/url.gyp:url_lib',
39 ], 42 ],
40 'export_dependent_settings': [ 43 'export_dependent_settings': [
41 'filesystem_bindings', 44 'filesystem_bindings',
42 ], 45 ],
43 }, 46 },
44 { 47 {
45 # GN version: //components/filesystem/public/interfaces 48 # GN version: //components/filesystem/public/interfaces
46 'target_name': 'filesystem_bindings', 49 'target_name': 'filesystem_bindings',
47 'type': 'static_library', 50 'type': 'static_library',
(...skipping 11 matching lines...) Expand all
59 'public/interfaces/file_system.mojom', 62 'public/interfaces/file_system.mojom',
60 'public/interfaces/types.mojom', 63 'public/interfaces/types.mojom',
61 ], 64 ],
62 }, 65 },
63 'includes': [ 66 'includes': [
64 '../../mojo/mojom_bindings_generator_explicit.gypi', 67 '../../mojo/mojom_bindings_generator_explicit.gypi',
65 ], 68 ],
66 } 69 }
67 ], 70 ],
68 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698