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

Side by Side Diff: components/crash_keys.gypi

Issue 1298743002: Partially componentize chrome/common/crash_keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation on iOS Created 5 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/toolbar 8 # GN version: //components/crash_keys
9 'target_name': 'toolbar', 9 'target_name': 'crash_keys',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../url/url.gyp:url_lib',
14 ],
15 'include_dirs': [ 11 'include_dirs': [
16 '..', 12 '..',
17 ], 13 ],
14 'dependencies': [
15 # List of dependencies is intentionally very minimal. Please avoid
16 # adding extra dependencies without first checking with OWNERS.
17 '../base/base.gyp:base',
18 ],
18 'sources': [ 19 'sources': [
19 # Note: sources list duplicated in GN build. 20 'crash_keys/crash_keys.cc',
20 'toolbar/toolbar_model.cc', 21 'crash_keys/crash_keys.h',
21 'toolbar/toolbar_model.h',
22 ], 22 ],
23 }, 23 },
24 ], 24 ],
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698