| 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 # We have 2 separate browser targets because //components/html_viewer requires | 5 # We have 2 separate browser targets because //components/html_viewer requires |
| 6 # startup_metric_utils_browser, but has symbols that conflict with mojo symbols | 6 # startup_metric_utils_browser, but has symbols that conflict with mojo symbols |
| 7 # that startup_metric_utils_browser_host indirectly depends on. | 7 # that startup_metric_utils_browser_host indirectly depends on. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 'sources': [ | 52 'sources': [ |
| 53 'startup_metric_utils/common/startup_metric.mojom', | 53 'startup_metric_utils/common/startup_metric.mojom', |
| 54 ], | 54 ], |
| 55 'dependencies': [ | 55 'dependencies': [ |
| 56 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom', | 56 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom', |
| 57 ], | 57 ], |
| 58 'variables': { | 58 'variables': { |
| 59 'mojom_typemaps': [ | 59 'mojom_typemaps': [ |
| 60 '<(DEPTH)/mojo/common/common_custom_types.typemap', | 60 '<(DEPTH)/mojo/common/common_custom_types.typemap', |
| 61 ], | 61 ], |
| 62 'use_new_wrapper_types': 'false', |
| 62 }, | 63 }, |
| 63 'includes': [ | 64 'includes': [ |
| 64 '../mojo/mojom_bindings_generator.gypi', | 65 '../mojo/mojom_bindings_generator.gypi', |
| 65 ], | 66 ], |
| 66 }, | 67 }, |
| 67 ], | 68 ], |
| 68 'conditions': [ | 69 'conditions': [ |
| 69 ['OS == "win"', { | 70 ['OS == "win"', { |
| 70 'targets': [ | 71 'targets': [ |
| 71 { | 72 { |
| 72 # GN version: //components/startup_metric_utils/common | 73 # GN version: //components/startup_metric_utils/common |
| 73 'target_name': 'startup_metric_utils_win', | 74 'target_name': 'startup_metric_utils_win', |
| 74 'type': 'static_library', | 75 'type': 'static_library', |
| 75 'dependencies': [ | 76 'dependencies': [ |
| 76 '../base/base.gyp:base', | 77 '../base/base.gyp:base', |
| 77 'components.gyp:variations', | 78 'components.gyp:variations', |
| 78 ], | 79 ], |
| 79 'include_dirs': [ | 80 'include_dirs': [ |
| 80 '..', | 81 '..', |
| 81 ], | 82 ], |
| 82 'sources': [ | 83 'sources': [ |
| 83 'startup_metric_utils/common/pre_read_field_trial_utils_win.cc', | 84 'startup_metric_utils/common/pre_read_field_trial_utils_win.cc', |
| 84 'startup_metric_utils/common/pre_read_field_trial_utils_win.h', | 85 'startup_metric_utils/common/pre_read_field_trial_utils_win.h', |
| 85 ], | 86 ], |
| 86 }, | 87 }, |
| 87 ], | 88 ], |
| 88 }], | 89 }], |
| 89 ], | 90 ], |
| 90 } | 91 } |
| OLD | NEW |