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

Side by Side Diff: components/app_modal.gypi

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes following rebase Created 5 years, 6 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 2014 The Chromium Authors. All rights reserved. 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 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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'app_modal', 7 'target_name': 'app_modal',
8 'type': 'static_library', 8 'type': 'static_library',
9 'dependencies': [ 9 'dependencies': [
10 » '../content/content.gyp:content_browser', 10 '../content/content.gyp:content_browser',
11 » '../content/content.gyp:content_common', 11 '../content/content.gyp:content_common',
12 '../skia/skia.gyp:skia', 12 '../skia/skia.gyp:skia',
13 'components_strings.gyp:components_strings', 13 'components_strings.gyp:components_strings',
14 'url_formatter',
14 ], 15 ],
15 'include_dirs': [ 16 'include_dirs': [
16 '..', 17 '..',
17 ], 18 ],
18 'sources': [ 19 'sources': [
19 'app_modal/app_modal_dialog.cc', 20 'app_modal/app_modal_dialog.cc',
20 'app_modal/app_modal_dialog.h', 21 'app_modal/app_modal_dialog.h',
21 'app_modal/app_modal_dialog_queue.cc', 22 'app_modal/app_modal_dialog_queue.cc',
22 'app_modal/app_modal_dialog_queue.h', 23 'app_modal/app_modal_dialog_queue.h',
23 'app_modal/javascript_app_modal_dialog.cc', 24 'app_modal/javascript_app_modal_dialog.cc',
(...skipping 13 matching lines...) Expand all
37 ['toolkit_views==1', { 38 ['toolkit_views==1', {
38 'sources': [ 39 'sources': [
39 'app_modal/views/javascript_app_modal_dialog_views.cc', 40 'app_modal/views/javascript_app_modal_dialog_views.cc',
40 'app_modal/views/javascript_app_modal_dialog_views.h', 41 'app_modal/views/javascript_app_modal_dialog_views.h',
41 ], 42 ],
42 }], 43 }],
43 ], 44 ],
44 }, 45 },
45 ], 46 ],
46 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698