Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Side by Side Diff: chrome/chrome_common.gypi

Issue 2022413002: Convert startup_metric_utils to use mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@message-mojom-magic
Patch Set: only create the target startup_metric_utils_win on windows Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 'common/all_messages.h', 9 'common/all_messages.h',
10 'common/attrition_experiments.h', 10 'common/attrition_experiments.h',
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 '<(DEPTH)/components/components.gyp:favicon_base', 334 '<(DEPTH)/components/components.gyp:favicon_base',
335 '<(DEPTH)/components/components.gyp:flags_ui_switches', 335 '<(DEPTH)/components/components.gyp:flags_ui_switches',
336 '<(DEPTH)/components/components.gyp:gcm_driver_common', 336 '<(DEPTH)/components/components.gyp:gcm_driver_common',
337 '<(DEPTH)/components/components.gyp:json_schema', 337 '<(DEPTH)/components/components.gyp:json_schema',
338 '<(DEPTH)/components/components.gyp:metrics', 338 '<(DEPTH)/components/components.gyp:metrics',
339 '<(DEPTH)/components/components.gyp:metrics_net', 339 '<(DEPTH)/components/components.gyp:metrics_net',
340 '<(DEPTH)/components/components.gyp:network_session_configurator_switche s', 340 '<(DEPTH)/components/components.gyp:network_session_configurator_switche s',
341 '<(DEPTH)/components/components.gyp:omnibox_common', 341 '<(DEPTH)/components/components.gyp:omnibox_common',
342 '<(DEPTH)/components/components.gyp:policy', 342 '<(DEPTH)/components/components.gyp:policy',
343 '<(DEPTH)/components/components.gyp:policy_component_common', 343 '<(DEPTH)/components/components.gyp:policy_component_common',
344 # TODO(fdoray): Remove this once the PreRead field trial has expired.
345 # crbug.com/577698
346 '<(DEPTH)/components/components.gyp:startup_metric_utils_common',
347 '<(DEPTH)/components/components.gyp:translate_core_common', 344 '<(DEPTH)/components/components.gyp:translate_core_common',
348 '<(DEPTH)/components/components.gyp:variations', 345 '<(DEPTH)/components/components.gyp:variations',
349 '<(DEPTH)/components/components.gyp:version_info', 346 '<(DEPTH)/components/components.gyp:version_info',
350 '<(DEPTH)/components/components_strings.gyp:components_strings', 347 '<(DEPTH)/components/components_strings.gyp:components_strings',
351 '<(DEPTH)/components/prefs/prefs.gyp:prefs', 348 '<(DEPTH)/components/prefs/prefs.gyp:prefs',
352 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter', 349 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter',
353 '<(DEPTH)/content/content.gyp:content_common', 350 '<(DEPTH)/content/content.gyp:content_common',
354 '<(DEPTH)/crypto/crypto.gyp:crypto', 351 '<(DEPTH)/crypto/crypto.gyp:crypto',
355 '<(DEPTH)/net/net.gyp:net', 352 '<(DEPTH)/net/net.gyp:net',
356 '<(DEPTH)/skia/skia.gyp:skia', 353 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 'dependencies': [ 497 'dependencies': [
501 '<(DEPTH)/url/ipc/url_ipc.gyp:url_ipc', 498 '<(DEPTH)/url/ipc/url_ipc.gyp:url_ipc',
502 ], 499 ],
503 }], 500 }],
504 ['OS=="win"', { 501 ['OS=="win"', {
505 'include_dirs': [ 502 'include_dirs': [
506 '<(DEPTH)/third_party/wtl/include', 503 '<(DEPTH)/third_party/wtl/include',
507 ], 504 ],
508 'dependencies': [ 505 'dependencies': [
509 '<(DEPTH)/components/components.gyp:dom_distiller_core', # Needed b y chrome_content_client.cc. 506 '<(DEPTH)/components/components.gyp:dom_distiller_core', # Needed b y chrome_content_client.cc.
507 # TODO(fdoray): Remove this once the PreRead field trial has
508 # expired. crbug.com/577698
509 '<(DEPTH)/components/components.gyp:startup_metric_utils_win',
510 ], 510 ],
511 'all_dependent_settings': { 511 'all_dependent_settings': {
512 'msvs_settings': { 512 'msvs_settings': {
513 'VCLinkerTool': { 513 'VCLinkerTool': {
514 'AdditionalDependencies': [ 514 'AdditionalDependencies': [
515 'wintrust.lib', 515 'wintrust.lib',
516 ], 516 ],
517 }, 517 },
518 }, 518 },
519 }, 519 },
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 ], 689 ],
690 'dependencies': [ 690 'dependencies': [
691 'installer_util', 691 'installer_util',
692 '../base/base.gyp:base', 692 '../base/base.gyp:base',
693 ], 693 ],
694 }, 694 },
695 ], 695 ],
696 }], 696 }],
697 ], 697 ],
698 } 698 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698