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

Side by Side Diff: chrome/chrome_common.gypi

Issue 972083002: Report utility process JS memory in task manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-oop
Patch Set: Try to fix build... again. Created 5 years, 7 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
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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 'common/safe_browsing/client_model.proto', 668 'common/safe_browsing/client_model.proto',
669 'common/safe_browsing/crx_info.proto', 669 'common/safe_browsing/crx_info.proto',
670 'common/safe_browsing/csd.proto' 670 'common/safe_browsing/csd.proto'
671 ], 671 ],
672 'variables': { 672 'variables': {
673 'proto_in_dir': 'common/safe_browsing', 673 'proto_in_dir': 'common/safe_browsing',
674 'proto_out_dir': 'chrome/common/safe_browsing', 674 'proto_out_dir': 'chrome/common/safe_browsing',
675 }, 675 },
676 'includes': [ '../build/protoc.gypi' ], 676 'includes': [ '../build/protoc.gypi' ],
677 }, 677 },
678 {
679 # GN version: //chrome/common:mojo_bindings
680 'target_name': 'common_mojo_bindings',
681 'type': 'static_library',
682 'includes': [
683 '../third_party/mojo/mojom_bindings_generator.gypi'
684 ],
685 'sources': [
686 'common/resource_usage_reporter.mojom',
687 ],
688 'dependencies': [
689 '../mojo/mojo_base.gyp:mojo_environment_chromium',
690 '../third_party/mojo/mojo_public.gyp:mojo_application_bindings',
691 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
692 ],
693 },
678 ], 694 ],
679 } 695 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698