OLD | NEW |
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_impl.cc', | 25 'file_system_impl.cc', |
26 'file_system_impl.h', | 26 'file_system_impl.h', |
27 'lock_table.cc', | 27 'lock_table.cc', |
28 'lock_table.h', | 28 'lock_table.h', |
| 29 'shared_temp_dir.cc', |
| 30 'shared_temp_dir.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_edk.gyp:mojo_system_impl', | 36 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
35 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 37 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
36 '../../mojo/mojo_platform_handle.gyp:platform_handle', | 38 '../../mojo/mojo_platform_handle.gyp:platform_handle', |
37 '../../services/shell/shell.gyp:shell_public', | 39 '../../services/shell/shell.gyp:shell_public', |
38 '../../url/url.gyp:url_lib', | 40 '../../url/url.gyp:url_lib', |
(...skipping 20 matching lines...) Expand all Loading... |
59 'public/interfaces/file_system.mojom', | 61 'public/interfaces/file_system.mojom', |
60 'public/interfaces/types.mojom', | 62 'public/interfaces/types.mojom', |
61 ], | 63 ], |
62 }, | 64 }, |
63 'includes': [ | 65 'includes': [ |
64 '../../mojo/mojom_bindings_generator_explicit.gypi', | 66 '../../mojo/mojom_bindings_generator_explicit.gypi', |
65 ], | 67 ], |
66 } | 68 } |
67 ], | 69 ], |
68 } | 70 } |
OLD | NEW |