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

Side by Side Diff: components/sad_tab.gypi

Issue 543663002: Componentize sad_tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 2014 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/sad_tab
9 'target_name': 'sad_tab',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../content/content.gyp:content',
14 '../ui/base/ui_base.gyp:ui_base',
15 '../url/url.gyp:url_lib',
16 'components_strings.gyp:components_strings',
17 ],
18 'include_dirs': [
19 '..',
20 ],
21 'sources': [
22 # Note: sources list duplicated in GN build.
23 'sad_tab/sad_tab.cc',
24 'sad_tab/sad_tab.h',
25 'sad_tab/sad_tab_client.h',
26 'sad_tab/sad_tab_helper.cc',
27 'sad_tab/sad_tab_helper.h',
28 'sad_tab/sad_tab_types.h',
29 'sad_tab/url_constants.cc',
30 'sad_tab/url_constants.h',
31 ],
32 'conditions': [
33 ['toolkit_views==1', {
34 'dependencies': [
35 '../ui/views/views.gyp:views',
36 ],
37 'sources': [
38 'sad_tab/views/sad_tab_view.cc',
39 'sad_tab/views/sad_tab_view.h',
40 ],
41 }],
42 ],
43 },
44 ],
45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698