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

Side by Side Diff: content/content_browser.gypi

Issue 585203002: Turn FileDescriptorInfo a collection class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing android build error Created 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base_static', 7 '../base/base.gyp:base_static',
8 '../crypto/crypto.gyp:crypto', 8 '../crypto/crypto.gyp:crypto',
9 '../google_apis/google_apis.gyp:google_apis', 9 '../google_apis/google_apis.gyp:google_apis',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 ['OS == "win"', { 1562 ['OS == "win"', {
1563 'dependencies': [ 1563 'dependencies': [
1564 '../third_party/power_gadget/power_gadget.gyp:power_gadget', 1564 '../third_party/power_gadget/power_gadget.gyp:power_gadget',
1565 ], 1565 ],
1566 'sources': [ 1566 'sources': [
1567 'browser/power_profiler/power_data_provider_ia_win.cc', 1567 'browser/power_profiler/power_data_provider_ia_win.cc',
1568 'browser/power_profiler/power_data_provider_ia_win.h', 1568 'browser/power_profiler/power_data_provider_ia_win.h',
1569 ] 1569 ]
1570 }, { # os != "win" 1570 }, { # os != "win"
1571 'sources': [ 1571 'sources': [
1572 'browser/power_profiler/power_data_provider_dummy.cc' 1572 'browser/power_profiler/power_data_provider_dummy.cc',
1573 'browser/file_descriptor_info_impl.h',
1574 'browser/file_descriptor_info_impl.cc',
1573 ] 1575 ]
1574 }], 1576 }],
1575 ['OS!="win" and OS!="mac" and OS!="android" and (OS!="linux" or use_udev==0) ', { 1577 ['OS!="win" and OS!="mac" and OS!="android" and (OS!="linux" or use_udev==0) ', {
1576 'sources': [ 1578 'sources': [
1577 'browser/gamepad/gamepad_platform_data_fetcher.cc', 1579 'browser/gamepad/gamepad_platform_data_fetcher.cc',
1578 ] 1580 ]
1579 }], 1581 }],
1580 ['OS=="ios"', { 1582 ['OS=="ios"', {
1581 'sources/': [ 1583 'sources/': [
1582 # iOS only needs a small portion of content; exclude all the 1584 # iOS only needs a small portion of content; exclude all the
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
1886 'sources': [ 1888 'sources': [
1887 'browser/media/cdm/browser_cdm_manager.cc', 1889 'browser/media/cdm/browser_cdm_manager.cc',
1888 'browser/media/cdm/browser_cdm_manager.h', 1890 'browser/media/cdm/browser_cdm_manager.h',
1889 # This works on Android because enable_browser_cdms==1 on Android. 1891 # This works on Android because enable_browser_cdms==1 on Android.
1890 'browser/media/media_web_contents_observer.cc', 1892 'browser/media/media_web_contents_observer.cc',
1891 'browser/media/media_web_contents_observer.h', 1893 'browser/media/media_web_contents_observer.h',
1892 ], 1894 ],
1893 }], 1895 }],
1894 ], 1896 ],
1895 } 1897 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698