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

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: 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_renderer.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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 '<(DEPTH)/components/components.gyp:favicon_base', 338 '<(DEPTH)/components/components.gyp:favicon_base',
339 '<(DEPTH)/components/components.gyp:flags_ui_switches', 339 '<(DEPTH)/components/components.gyp:flags_ui_switches',
340 '<(DEPTH)/components/components.gyp:gcm_driver_common', 340 '<(DEPTH)/components/components.gyp:gcm_driver_common',
341 '<(DEPTH)/components/components.gyp:json_schema', 341 '<(DEPTH)/components/components.gyp:json_schema',
342 '<(DEPTH)/components/components.gyp:metrics', 342 '<(DEPTH)/components/components.gyp:metrics',
343 '<(DEPTH)/components/components.gyp:metrics_net', 343 '<(DEPTH)/components/components.gyp:metrics_net',
344 '<(DEPTH)/components/components.gyp:network_session_configurator_switche s', 344 '<(DEPTH)/components/components.gyp:network_session_configurator_switche s',
345 '<(DEPTH)/components/components.gyp:omnibox_common', 345 '<(DEPTH)/components/components.gyp:omnibox_common',
346 '<(DEPTH)/components/components.gyp:policy', 346 '<(DEPTH)/components/components.gyp:policy',
347 '<(DEPTH)/components/components.gyp:policy_component_common', 347 '<(DEPTH)/components/components.gyp:policy_component_common',
348 # TODO(fdoray): Remove this once the PreRead field trial has expired.
349 # crbug.com/577698
350 '<(DEPTH)/components/components.gyp:startup_metric_utils_common',
351 '<(DEPTH)/components/components.gyp:translate_core_common', 348 '<(DEPTH)/components/components.gyp:translate_core_common',
352 '<(DEPTH)/components/components.gyp:variations', 349 '<(DEPTH)/components/components.gyp:variations',
353 '<(DEPTH)/components/components.gyp:version_info', 350 '<(DEPTH)/components/components.gyp:version_info',
354 '<(DEPTH)/components/components_strings.gyp:components_strings', 351 '<(DEPTH)/components/components_strings.gyp:components_strings',
355 '<(DEPTH)/components/prefs/prefs.gyp:prefs', 352 '<(DEPTH)/components/prefs/prefs.gyp:prefs',
356 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter', 353 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter',
357 '<(DEPTH)/content/content.gyp:content_common', 354 '<(DEPTH)/content/content.gyp:content_common',
358 '<(DEPTH)/crypto/crypto.gyp:crypto', 355 '<(DEPTH)/crypto/crypto.gyp:crypto',
359 '<(DEPTH)/net/net.gyp:net', 356 '<(DEPTH)/net/net.gyp:net',
360 '<(DEPTH)/skia/skia.gyp:skia', 357 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 'dependencies': [ 504 'dependencies': [
508 '<(DEPTH)/url/ipc/url_ipc.gyp:url_ipc', 505 '<(DEPTH)/url/ipc/url_ipc.gyp:url_ipc',
509 ], 506 ],
510 }], 507 }],
511 ['OS=="win"', { 508 ['OS=="win"', {
512 'include_dirs': [ 509 'include_dirs': [
513 '<(DEPTH)/third_party/wtl/include', 510 '<(DEPTH)/third_party/wtl/include',
514 ], 511 ],
515 'dependencies': [ 512 'dependencies': [
516 '<(DEPTH)/components/components.gyp:dom_distiller_core', # Needed b y chrome_content_client.cc. 513 '<(DEPTH)/components/components.gyp:dom_distiller_core', # Needed b y chrome_content_client.cc.
514 # TODO(fdoray): Remove this once the PreRead field trial has
515 # expired. crbug.com/577698
516 '<(DEPTH)/components/components.gyp:startup_metric_utils_common',
erikchen 2016/06/07 16:01:37 why do we need this on win, but not other OSes?
Sam McNally 2016/06/08 00:31:44 startup_metric_utils_common used to contain the me
517 ], 517 ],
518 'all_dependent_settings': { 518 'all_dependent_settings': {
519 'msvs_settings': { 519 'msvs_settings': {
520 'VCLinkerTool': { 520 'VCLinkerTool': {
521 'AdditionalDependencies': [ 521 'AdditionalDependencies': [
522 'wintrust.lib', 522 'wintrust.lib',
523 ], 523 ],
524 }, 524 },
525 }, 525 },
526 }, 526 },
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 ], 696 ],
697 'dependencies': [ 697 'dependencies': [
698 'installer_util', 698 'installer_util',
699 '../base/base.gyp:base', 699 '../base/base.gyp:base',
700 ], 700 ],
701 }, 701 },
702 ], 702 ],
703 }], 703 }],
704 ], 704 ],
705 } 705 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698