| 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, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'user_service_bindings_mojom', | 49 'user_service_bindings_mojom', |
| 50 ], | 50 ], |
| 51 }, | 51 }, |
| 52 { | 52 { |
| 53 'target_name': 'user_service_bindings_mojom', | 53 'target_name': 'user_service_bindings_mojom', |
| 54 'type': 'none', | 54 'type': 'none', |
| 55 'variables': { | 55 'variables': { |
| 56 'mojom_files': [ | 56 'mojom_files': [ |
| 57 'public/interfaces/user_service.mojom', | 57 'public/interfaces/user_service.mojom', |
| 58 ], | 58 ], |
| 59 'use_new_wrapper_types': 'false', |
| 59 }, | 60 }, |
| 60 'dependencies': [ | 61 'dependencies': [ |
| 61 '../../components/filesystem/filesystem.gyp:filesystem_bindings_mojom', | 62 '../../components/filesystem/filesystem.gyp:filesystem_bindings_mojom', |
| 62 '../../components/leveldb/leveldb.gyp:leveldb_bindings_mojom', | 63 '../../components/leveldb/leveldb.gyp:leveldb_bindings_mojom', |
| 63 ], | 64 ], |
| 64 'includes': [ | 65 'includes': [ |
| 65 '../../mojo/mojom_bindings_generator_explicit.gypi', | 66 '../../mojo/mojom_bindings_generator_explicit.gypi', |
| 66 ], | 67 ], |
| 67 }, | 68 }, |
| 68 { | 69 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 85 'application_name': 'user', | 86 'application_name': 'user', |
| 86 'source_manifest': '<(DEPTH)/services/user/manifest.json', | 87 'source_manifest': '<(DEPTH)/services/user/manifest.json', |
| 87 }, | 88 }, |
| 88 'includes': [ | 89 'includes': [ |
| 89 '../../mojo/public/mojo_application_manifest.gypi', | 90 '../../mojo/public/mojo_application_manifest.gypi', |
| 90 ], | 91 ], |
| 91 'hard_dependency': 1, | 92 'hard_dependency': 1, |
| 92 }, | 93 }, |
| 93 ], | 94 ], |
| 94 } | 95 } |
| OLD | NEW |