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

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 typo (= instead of == in components/crash_keys.gypi) 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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/crash_keys
9 'target_name': 'crash_keys',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
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 ],
19 'sources': [
20 'crash_keys/crash_keys.cc',
21 'crash_keys/crash_keys.h',
22 ],
23 },
24 ],
25 'conditions': [
26 ['OS=="win" and target_arch=="ia32"', {
27 'targets': [
28 {
29 'target_name': 'crash_keys_win64',
30 'type': 'static_library',
31 'sources': [
32 'crash_keys/crash_keys.cc',
33 'crash_keys/crash_keys.h',
34 ],
35 'dependencies': [
36 '../base/base.gyp:base_win64',
37 ],
38 'configurations': {
39 'Common_Base': {
40 'msvs_target_platform': 'x64',
41 },
42 },
43 },
44 ],
45 }],
46 ],
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698