diff options
Diffstat (limited to 'extensions/shell')
-rw-r--r-- | extensions/shell/BUILD.gn | 4 | ||||
-rw-r--r-- | extensions/shell/app_shell.gyp | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/extensions/shell/BUILD.gn b/extensions/shell/BUILD.gn index 0c99278..c8e1958 100644 --- a/extensions/shell/BUILD.gn +++ b/extensions/shell/BUILD.gn @@ -130,6 +130,10 @@ source_set("app_shell_lib") { deps += [ "//components/nacl:nacl_helper" ] } } + + if (cld_version == 2) { + deps += [ "//third_party/cld_2:cld2_platform_impl" ] + } } if (!(is_chromeos && !use_ozone)) { diff --git a/extensions/shell/app_shell.gyp b/extensions/shell/app_shell.gyp index 4a41b30..9c6ead5 100644 --- a/extensions/shell/app_shell.gyp +++ b/extensions/shell/app_shell.gyp @@ -65,6 +65,10 @@ '<@(app_shell_lib_sources)', ], 'conditions': [ + [ 'cld_version==2', { + 'dependencies': [ + '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_platform_impl', ], + }], ['use_aura==1', { 'dependencies': [ '<(DEPTH)/ui/wm/wm.gyp:wm', |