| 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'mojo_variables.gypi', | 7 'mojo_variables.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults' : { | 9 'target_defaults' : { |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'type': 'static_library', | 225 'type': 'static_library', |
| 226 'include_dirs': [ | 226 'include_dirs': [ |
| 227 '..' | 227 '..' |
| 228 ], | 228 ], |
| 229 'sources': [ | 229 'sources': [ |
| 230 'public/js/constants.cc', | 230 'public/js/constants.cc', |
| 231 'public/js/constants.h', | 231 'public/js/constants.h', |
| 232 ], | 232 ], |
| 233 }, | 233 }, |
| 234 { | 234 { |
| 235 # GN version: //mojo/public/cpp/environment:standalone | |
| 236 'target_name': 'mojo_environment_standalone', | |
| 237 'type': 'static_library', | |
| 238 'sources': [ | |
| 239 'public/c/environment/async_waiter.h', | |
| 240 'public/c/environment/logger.h', | |
| 241 'public/cpp/environment/async_waiter.h', | |
| 242 'public/cpp/environment/environment.h', | |
| 243 'public/cpp/environment/lib/async_waiter.cc', | |
| 244 'public/cpp/environment/lib/default_async_waiter.cc', | |
| 245 'public/cpp/environment/lib/default_async_waiter.h', | |
| 246 'public/cpp/environment/lib/default_logger.cc', | |
| 247 'public/cpp/environment/lib/default_logger.h', | |
| 248 'public/cpp/environment/lib/default_task_tracker.cc', | |
| 249 'public/cpp/environment/lib/default_task_tracker.h', | |
| 250 'public/cpp/environment/lib/environment.cc', | |
| 251 'public/cpp/environment/lib/logging.cc', | |
| 252 'public/cpp/environment/lib/scoped_task_tracking.cc', | |
| 253 'public/cpp/environment/lib/scoped_task_tracking.h', | |
| 254 'public/cpp/environment/logging.h', | |
| 255 'public/cpp/environment/task_tracker.h', | |
| 256 ], | |
| 257 'include_dirs': [ | |
| 258 '..', | |
| 259 ], | |
| 260 }, | |
| 261 { | |
| 262 # GN version: //mojo/public/cpp/utility | 235 # GN version: //mojo/public/cpp/utility |
| 263 'target_name': 'mojo_utility', | 236 'target_name': 'mojo_utility', |
| 264 'type': 'static_library', | 237 'type': 'static_library', |
| 265 'sources': [ | 238 'sources': [ |
| 266 'public/cpp/utility/lib/mutex.cc', | 239 'public/cpp/utility/lib/mutex.cc', |
| 267 'public/cpp/utility/lib/run_loop.cc', | 240 'public/cpp/utility/lib/run_loop.cc', |
| 268 'public/cpp/utility/lib/thread.cc', | 241 'public/cpp/utility/lib/thread.cc', |
| 269 'public/cpp/utility/lib/thread_local.h', | 242 'public/cpp/utility/lib/thread_local.h', |
| 270 'public/cpp/utility/lib/thread_local_posix.cc', | 243 'public/cpp/utility/lib/thread_local_posix.cc', |
| 271 'public/cpp/utility/lib/thread_local_win.cc', | 244 'public/cpp/utility/lib/thread_local_win.cc', |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 'mojo_interface_bindings_java_sources', | 522 'mojo_interface_bindings_java_sources', |
| 550 'mojo_public_java', | 523 'mojo_public_java', |
| 551 '<(DEPTH)/base/base.gyp:base_java', | 524 '<(DEPTH)/base/base.gyp:base_java', |
| 552 ], | 525 ], |
| 553 'includes': [ '../build/java.gypi' ], | 526 'includes': [ '../build/java.gypi' ], |
| 554 }, | 527 }, |
| 555 ], | 528 ], |
| 556 }], | 529 }], |
| 557 ], | 530 ], |
| 558 } | 531 } |
| OLD | NEW |