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

Side by Side Diff: components/crash.gypi

Issue 1389913002: Move crashes_ui resources and utils to //components/crash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/crash/core/browser
9 'target_name': 'crash_core_browser',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 'upload_list',
16 '../base/base.gyp:base',
17 ],
18 'sources': [
19 'crash/core/browser/crashes_ui_util.cc',
20 'crash/core/browser/crashes_ui_util.h',
21 ],
22 },
23 {
8 # GN version: //components/crash/core/common 24 # GN version: //components/crash/core/common
9 'target_name': 'crash_core_common', 25 'target_name': 'crash_core_common',
10 'type': 'static_library', 26 'type': 'static_library',
11 'include_dirs': [ 27 'include_dirs': [
12 '..', 28 '..',
13 ], 29 ],
14 'dependencies': [ 30 'dependencies': [
15 # List of dependencies is intentionally very minimal. Please avoid 31 # List of dependencies is intentionally very minimal. Please avoid
16 # adding extra dependencies without first checking with OWNERS. 32 # adding extra dependencies without first checking with OWNERS.
17 '../base/base.gyp:base', 33 '../base/base.gyp:base',
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 ], 392 ],
377 }], 393 }],
378 ], 394 ],
379 }, 395 },
380 ], 396 ],
381 }], 397 }],
382 ], 398 ],
383 }], 399 }],
384 ], 400 ],
385 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698