OLD | NEW |
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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 | 7 |
8 gypi_values = exec_script( | 8 gypi_values = exec_script( |
9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
10 [ rebase_path("../chrome_renderer.gypi") ], | 10 [ rebase_path("../chrome_renderer.gypi") ], |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 deps += [ | 60 deps += [ |
61 #'../components/nacl.gyp:nacl', TODO(GYP) | 61 #'../components/nacl.gyp:nacl', TODO(GYP) |
62 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) | 62 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) |
63 ] | 63 ] |
64 } | 64 } |
65 | 65 |
66 if (enable_plugins) { | 66 if (enable_plugins) { |
67 sources += rebase_path(gypi_values.chrome_renderer_plugin_sources, | 67 sources += rebase_path(gypi_values.chrome_renderer_plugin_sources, |
68 ".", "..") | 68 ".", "..") |
69 deps += [ | 69 deps += [ |
70 #'../ppapi/ppapi_internal.gyp:ppapi_host', TODO(GYP | 70 "//ppapi:ppapi_host", |
71 #'../ppapi/ppapi_internal.gyp:ppapi_proxy', TODO(GYP | 71 "//ppapi:ppapi_ipc", |
72 #'../ppapi/ppapi_internal.gyp:ppapi_ipc', TODO(GYP | 72 "//ppapi:ppapi_proxy", |
73 #'../ppapi/ppapi_internal.gyp:ppapi_shared', TODO(GYP | 73 "//ppapi:ppapi_shared", |
74 ] | 74 ] |
75 } | 75 } |
76 | 76 |
77 if (safe_browsing_mode == 1) { | 77 if (safe_browsing_mode == 1) { |
78 sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources, | 78 sources += rebase_path(gypi_values.chrome_renderer_safe_browsing_sources, |
79 ".", "..") | 79 ".", "..") |
80 sources += rebase_path( | 80 sources += rebase_path( |
81 gypi_values.chrome_renderer_basic_safe_browsing_sources, | 81 gypi_values.chrome_renderer_basic_safe_browsing_sources, |
82 ".", "..") | 82 ".", "..") |
83 defines += [ "FULL_SAFE_BROWSING" ] | 83 defines += [ "FULL_SAFE_BROWSING" ] |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 # ['win_pdf_metafile_for_printing==1', { | 149 # ['win_pdf_metafile_for_printing==1', { |
150 # 'sources': [ | 150 # 'sources': [ |
151 # 'renderer/printing/print_web_view_helper_pdf_win.cc', | 151 # 'renderer/printing/print_web_view_helper_pdf_win.cc', |
152 # ], | 152 # ], |
153 # }, { | 153 # }, { |
154 # 'sources': [ | 154 # 'sources': [ |
155 # 'renderer/printing/print_web_view_helper_win.cc', | 155 # 'renderer/printing/print_web_view_helper_win.cc', |
156 # ], | 156 # ], |
157 # }], | 157 # }], |
158 } | 158 } |
OLD | NEW |