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

Side by Side Diff: content/content_browser.gypi

Issue 750633003: Implement HasPermission() method in PermissionService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add dependencies to content_app, content_child and content_ppapi_plugin Created 6 years 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 '../device/vibration/vibration.gyp:device_vibration', 9 '../device/vibration/vibration.gyp:device_vibration',
10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings', 10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings',
(...skipping 11 matching lines...) Expand all
22 '../ui/accessibility/accessibility.gyp:ax_gen', 22 '../ui/accessibility/accessibility.gyp:ax_gen',
23 '../ui/base/ui_base.gyp:ui_base', 23 '../ui/base/ui_base.gyp:ui_base',
24 '../ui/events/events.gyp:events_base', 24 '../ui/events/events.gyp:events_base',
25 '../ui/events/events.gyp:gesture_detection', 25 '../ui/events/events.gyp:gesture_detection',
26 '../ui/gfx/gfx.gyp:gfx', 26 '../ui/gfx/gfx.gyp:gfx',
27 '../ui/gfx/gfx.gyp:gfx_geometry', 27 '../ui/gfx/gfx.gyp:gfx_geometry',
28 '../ui/resources/ui_resources.gyp:ui_resources', 28 '../ui/resources/ui_resources.gyp:ui_resources',
29 '../ui/snapshot/snapshot.gyp:snapshot', 29 '../ui/snapshot/snapshot.gyp:snapshot',
30 'browser/service_worker/service_worker_proto.gyp:proto', 30 'browser/service_worker/service_worker_proto.gyp:proto',
31 'browser/speech/proto/speech_proto.gyp:speech_proto', 31 'browser/speech/proto/speech_proto.gyp:speech_proto',
32 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
32 ], 33 ],
33 'export_dependent_settings': [ 34 'export_dependent_settings': [
34 '../ui/accessibility/accessibility.gyp:ax_gen', 35 '../ui/accessibility/accessibility.gyp:ax_gen',
35 # The public content API headers directly include Blink API headers, so we 36 # The public content API headers directly include Blink API headers, so we
36 # have to export the blink header settings so that relative paths in these 37 # have to export the blink header settings so that relative paths in these
37 # headers resolve correctly. 38 # headers resolve correctly.
38 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', 39 '../third_party/WebKit/public/blink_headers.gyp:blink_headers',
39 # The public render_widget_host.h needs to re-export skia defines. 40 # The public render_widget_host.h needs to re-export skia defines.
40 '../skia/skia.gyp:skia', 41 '../skia/skia.gyp:skia',
42 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
41 ], 43 ],
42 'include_dirs': [ 44 'include_dirs': [
43 '..', 45 '..',
44 '<(INTERMEDIATE_DIR)', 46 '<(INTERMEDIATE_DIR)',
45 ], 47 ],
46 'variables': { 48 'variables': {
47 'public_browser_sources': [ 49 'public_browser_sources': [
48 'public/browser/access_token_store.h', 50 'public/browser/access_token_store.h',
49 'public/browser/android/compositor.h', 51 'public/browser/android/compositor.h',
50 'public/browser/android/compositor_client.h', 52 'public/browser/android/compositor_client.h',
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1929 'sources': [ 1931 'sources': [
1930 'browser/media/cdm/browser_cdm_manager.cc', 1932 'browser/media/cdm/browser_cdm_manager.cc',
1931 'browser/media/cdm/browser_cdm_manager.h', 1933 'browser/media/cdm/browser_cdm_manager.h',
1932 # This works on Android because enable_browser_cdms==1 on Android. 1934 # This works on Android because enable_browser_cdms==1 on Android.
1933 'browser/media/media_web_contents_observer.cc', 1935 'browser/media/media_web_contents_observer.cc',
1934 'browser/media/media_web_contents_observer.h', 1936 'browser/media/media_web_contents_observer.h',
1935 ], 1937 ],
1936 }], 1938 }],
1937 ], 1939 ],
1938 } 1940 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698