OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 { | 388 { |
389 # GN version: //mojo/environment:chromium | 389 # GN version: //mojo/environment:chromium |
390 'target_name': 'mojo_environment_chromium', | 390 'target_name': 'mojo_environment_chromium', |
391 'type': 'static_library', | 391 'type': 'static_library', |
392 'dependencies': [ | 392 'dependencies': [ |
393 'mojo_common_lib', | 393 'mojo_common_lib', |
394 'mojo_environment_chromium_impl', | 394 'mojo_environment_chromium_impl', |
395 ], | 395 ], |
396 'sources': [ | 396 'sources': [ |
397 'environment/environment.cc', | 397 'environment/environment.cc', |
| 398 # TODO(vtl): This is kind of ugly. (See TODO in logging.h.) |
| 399 "public/cpp/environment/logging.h", |
| 400 "public/cpp/environment/lib/logging.h", |
398 ], | 401 ], |
399 'include_dirs': [ | 402 'include_dirs': [ |
400 '..', | 403 '..', |
401 ], | 404 ], |
402 'export_dependent_settings': [ | 405 'export_dependent_settings': [ |
403 'mojo_environment_chromium_impl', | 406 'mojo_environment_chromium_impl', |
404 ], | 407 ], |
405 }, | 408 }, |
406 { | 409 { |
407 # GN version: //mojo/environment:chromium_impl | 410 # GN version: //mojo/environment:chromium_impl |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
941 'views/native_widget_view_manager.cc', | 944 'views/native_widget_view_manager.cc', |
942 'views/native_widget_view_manager.h', | 945 'views/native_widget_view_manager.h', |
943 'views/views_init.cc', | 946 'views/views_init.cc', |
944 'views/views_init.h', | 947 'views/views_init.h', |
945 ], | 948 ], |
946 }, | 949 }, |
947 ], | 950 ], |
948 }], | 951 }], |
949 ], | 952 ], |
950 } | 953 } |
OLD | NEW |