OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 '../third_party/mojo/mojo_variables.gypi', | 10 '../third_party/mojo/mojo_variables.gypi', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
48 '<(mojo_system_for_component)', | 48 '<(mojo_system_for_component)', |
49 ], | 49 ], |
50 'export_dependent_settings': [ | 50 'export_dependent_settings': [ |
51 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 51 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
52 ], | 52 ], |
53 'sources': [ | 53 'sources': [ |
54 'common/common_type_converters.cc', | 54 'common/common_type_converters.cc', |
55 'common/common_type_converters.h', | 55 'common/common_type_converters.h', |
| 56 'common/data_pipe_file_utils.cc', |
56 'common/data_pipe_utils.cc', | 57 'common/data_pipe_utils.cc', |
57 'common/data_pipe_utils.h', | 58 'common/data_pipe_utils.h', |
58 'common/handle_watcher.cc', | 59 'common/handle_watcher.cc', |
59 'common/handle_watcher.h', | 60 'common/handle_watcher.h', |
60 'common/message_pump_mojo.cc', | 61 'common/message_pump_mojo.cc', |
61 'common/message_pump_mojo.h', | 62 'common/message_pump_mojo.h', |
62 'common/message_pump_mojo_handler.h', | 63 'common/message_pump_mojo_handler.h', |
63 'common/time_helper.cc', | 64 'common/time_helper.cc', |
64 'common/time_helper.h', | 65 'common/time_helper.h', |
65 ], | 66 ], |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 ], | 245 ], |
245 'variables': { | 246 'variables': { |
246 'java_in_dir': '<(DEPTH)/mojo/android/system', | 247 'java_in_dir': '<(DEPTH)/mojo/android/system', |
247 }, | 248 }, |
248 'includes': [ '../build/java.gypi' ], | 249 'includes': [ '../build/java.gypi' ], |
249 }, | 250 }, |
250 ] | 251 ] |
251 }] | 252 }] |
252 ] | 253 ] |
253 } | 254 } |
OLD | NEW |